Searched refs:receivePipe (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10/tcl-105/tcl84/tcl/unix/
H A DtclUnixNotfy.c900 int i, status, numFdBits = 0, receivePipe;
909 receivePipe = fds[0];
912 status = fcntl(receivePipe, F_GETFL);
914 if (fcntl(receivePipe, F_SETFL, status) < 0) {
923 if (ioctl(receivePipe, (int) FIONBIO, &status) < 0) {
993 if ( receivePipe >= numFdBits ) {
994 numFdBits = receivePipe + 1;
996 FD_SET( receivePipe, &readableMask );
1066 if ( FD_ISSET( receivePipe, &readableMask ) ) {
1067 i = read(receivePipe, bu
890 int i, status, numFdBits = 0, receivePipe; local
[all...]
/macosx-10.10/tcl-105/tcl/tcl/unix/
H A DtclUnixNotfy.c916 int i, numFdBits = 0, receivePipe;
925 receivePipe = fds[0];
927 if (TclUnixSetBlockingMode(receivePipe, TCL_MODE_NONBLOCKING) < 0) {
995 if (receivePipe >= numFdBits) {
996 numFdBits = receivePipe + 1;
998 FD_SET(receivePipe, &readableMask);
1068 if (FD_ISSET(receivePipe, &readableMask)) {
1069 i = read(receivePipe, buf, 1);
1088 close(receivePipe);
906 int i, numFdBits = 0, receivePipe; local
/macosx-10.10/tcl-105/tcl84/tcl/macosx/
H A DtclMacOSXNotify.c149 static int receivePipe = -1; /* Output end of triggerPipe */ variable
406 receivePipe = fds[0];
485 close(receivePipe);
1116 if (receivePipe >= numFdBits) {
1117 numFdBits = receivePipe + 1;
1119 FD_SET(receivePipe, &readableMask);
1192 if (FD_ISSET(receivePipe, &readableMask)) {
1193 i = read(receivePipe, buf, 1);
/macosx-10.10/tcl-105/tcl/tcl/macosx/
H A DtclMacOSXNotify.c332 static int receivePipe = -1; /* Output end of triggerPipe */ variable
556 receivePipe = fds[0];
715 close(receivePipe);
1793 if (receivePipe >= numFdBits) {
1794 numFdBits = receivePipe + 1;
1796 FD_SET(receivePipe, &readableMask);
1874 if (FD_ISSET(receivePipe, &readableMask)) {
1875 i = read(receivePipe, buf, 1);

Completed in 131 milliseconds