Searched refs:WNOHANG (Results 1 - 25 of 100) sorted by relevance

1234

/macosx-10.10/OpenLDAP-499.27/OpenLDAP/include/ac/
H A Dwait.h51 # define WAIT_FLAGS ( WNOHANG | WUNTRACED | WCONTINUED )
53 # define WAIT_FLAGS ( WNOHANG | WUNTRACED )
/macosx-10.10/bash-94.1.2/bash-3.2/include/
H A Dposixwait.h46 #if !defined (WNOHANG)
47 # define WNOHANG 1 macro
49 #endif /* WNOHANG */
/macosx-10.10/emacs-93/emacs/src/s/
H A Dirix4-0.h49 we'll just define WNOHANG right here.
52 #define WNOHANG 0x1 macro
/macosx-10.10/ksh-23/ksh/src/lib/libast/comp/
H A Dwaitpid.c134 if (flags & WNOHANG)
156 if (flags & WNOHANG) signal(SIGCLD, handler);
159 if (flags & WNOHANG)
174 if (p == -1 && errno == EINVAL && (flags & ~WNOHANG))
175 p = wait3(&s, flags & WNOHANG, NiL);
/macosx-10.10/tcsh-65/tcsh/
H A Dmi.wait.h26 #define WNOHANG 1 /* do not wait for child to exit */ macro
H A Dtc.wait.h141 # ifndef WNOHANG
142 # define WNOHANG 1 /* dont hang in wait */
H A Dsh.proc.c188 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru);
193 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru);
196 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru);
203 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG));
210 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG),
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/include/
H A Dwait.h49 #ifndef WNOHANG
50 #define WNOHANG 1 macro
/macosx-10.10/ksh-23/ksh/src/lib/libast/misc/
H A Dprocclose.c58 flags |= WNOHANG;
64 if (pid != p->pid && (flags & WNOHANG))
/macosx-10.10/Libc-1044.1.2/gen/FreeBSD/
H A Dwaitpid.c57 if ((options & (WCONTINUED | WNOHANG | WUNTRACED)) != options) {
/macosx-10.10/curl-83.1.2/curl/tests/
H A Dftp.pm146 waitpid($pid, &WNOHANG);
196 waitpid($pid, &WNOHANG);
214 waitpid($pid, &WNOHANG);
231 waitpid($pid, &WNOHANG);
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/generic/
H A DtclXprocess.c24 #ifndef WNOHANG
25 # define WNOHANG 1 macro
185 if (options & WNOHANG)
187 options |= WNOHANG;
/macosx-10.10/tcsh-65/tcsh/win32/
H A Dsignal.h110 #define WNOHANG 0 macro
/macosx-10.10/tcl-105/tcl/tcl/compat/
H A Dwaitpid.c73 int options) /* OR'ed combination of WNOHANG and
121 if (options & WNOHANG) {
/macosx-10.10/tcl-105/tcl84/tcl/compat/
H A Dwaitpid.c78 int options; /* OR'ed combination of WNOHANG and
126 if (options & WNOHANG) {
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Dunixchild.cpp121 reaped = checkStatus(WNOHANG);
417 if (it->second->checkStatus(WNOHANG))
421 while (pid_t pid = ::wait4(0, &status, WNOHANG, NULL)) {
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dunixchild.cpp121 reaped = checkStatus(WNOHANG);
417 if (it->second->checkStatus(WNOHANG))
421 while (pid_t pid = ::wait4(0, &status, WNOHANG, NULL)) {
/macosx-10.10/remote_cmds-47/rpc_yppasswdd.tproj/
H A Drpc.yppasswdd.c186 while (wait3((int *) NULL, WNOHANG, (struct rusage *) NULL) > 0)
/macosx-10.10/rsync-45/rsync/
H A Dcleanup.c125 int pid = wait_process(cleanup_child_pid, &status, WNOHANG);
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dwait.h113 * Option bits for the third argument of wait4. WNOHANG causes the
121 #define WNOHANG 0x00000001 /* [XSI] no hang in wait/no child to reap */ macro
166 /* WNOHANG already defined for wait4() */
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.25/lib/HTTP/Proxy/Engine/
H A DScoreBoard.pm3 use POSIX ":sys_wait_h"; # WNOHANG
81 while ( ( my $kid = waitpid( -1, WNOHANG ) ) > 0 ) {
158 my $pid = waitpid( -1, WNOHANG );
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.300/lib/HTTP/Proxy/Engine/
H A DScoreBoard.pm3 use POSIX ":sys_wait_h"; # WNOHANG
81 while ( ( my $kid = waitpid( -1, WNOHANG ) ) > 0 ) {
158 my $pid = waitpid( -1, WNOHANG );
/macosx-10.10/Heimdal-398.1.2/kadmin/
H A Dkadm_conn.c99 while ((waitpid(-1, &status, WNOHANG)) > 0)
219 while ((waitpid(-1, &status, WNOHANG)) > 0)
/macosx-10.10/tcl-105/tcl/tcl/unix/
H A DtclUnixPort.h223 #ifndef WNOHANG
224 # define WNOHANG 1 macro
/macosx-10.10/tcl-105/tcl/tcl/win/
H A DtclWinPort.h283 #ifndef WNOHANG
284 # define WNOHANG 1 macro

Completed in 159 milliseconds

1234