Searched refs:WNOHANG (Results 26 - 50 of 100) sorted by relevance

1234

/macosx-10.10/tcl-105/tcl84/tcl/win/
H A DtclWinPort.h261 #ifndef WNOHANG
262 # define WNOHANG 1 macro
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.25/lib/HTTP/Proxy/Engine/
H A DLegacy.pm3 use POSIX 'WNOHANG';
92 my $pid = waitpid( -1, WNOHANG );
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.300/lib/HTTP/Proxy/Engine/
H A DLegacy.pm3 use POSIX 'WNOHANG';
92 my $pid = waitpid( -1, WNOHANG );
/macosx-10.10/SmartCardServices-55111/src/PCSC/
H A Dsys_macosx.cpp317 return waitpid(-1, 0, WNOHANG);
H A Dsys_unix.c347 return waitpid(-1, 0, WNOHANG);
/macosx-10.10/apr-32/apr/apr/misc/unix/
H A Dotherchild.c163 waitret = waitpid(ocr->proc->pid, &status, WNOHANG);
/macosx-10.10/file-46/file/src/
H A Dcompress.c486 #ifdef WNOHANG
487 while (waitpid(-1, NULL, WNOHANG) != -1)
/macosx-10.10/ksh-23/ksh/src/lib/libast/comp/
H A Dspawnveg.c69 if (waitpid(pid, &err, WNOHANG|WNOWAIT) == pid && EXIT_STATUS(err) == 127)
/macosx-10.10/tcl-105/tcl84/tcl/unix/
H A DtclUnixPort.h251 #ifndef WNOHANG
252 # define WNOHANG 1 macro
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dmain.c1170 #ifdef WNOHANG
1174 while ( waitpid( (pid_t)-1, NULL, WNOHANG ) > 0 || errno == EINTR );
1176 while ( wait3( NULL, WNOHANG, NULL ) > 0 || errno == EINTR );
/macosx-10.10/apr-32/apr/apr/threadproc/netware/
H A Dproc.c33 int waitpid_options = WUNTRACED | WNOHANG;
409 waitpid_options |= WNOHANG;
/macosx-10.10/cron-39/cron/
H A Dcron.c435 pid = waitpid(-1, &waiter, WNOHANG);
437 pid = wait3(&waiter, WNOHANG, (struct rusage *)0);
/macosx-10.10/cups-408/cups/scheduler/
H A Dcups-deviced.c663 while ((pid = waitpid(-1, &status, WNOHANG)) > 0)
665 while ((pid = wait3(&status, WNOHANG, NULL)) > 0)
/macosx-10.10/DiskArbitration-268/diskarbitrationd/
H A DDACommand.c223 while ( ( pid = waitpid( -1, &status, WNOHANG ) ) > 0 )
/macosx-10.10/apr-32/apr/apr/threadproc/unix/
H A Dsignals.c63 while (waitpid(-1, &exit_status, WNOHANG) > 0) {
/macosx-10.10/configd-699.1.5/SystemConfiguration.fproj/
H A DSCDPlugin.c139 pid = wait4(-1, &status, WNOHANG, &rusage);
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dcurl_ntlm_wb.c84 pid_t ret = waitpid(conn->ntlm_auth_hlpr_pid, NULL, WNOHANG);
/macosx-10.10/mail_cmds-30/comsat/
H A Dcomsat.c162 while (wait3(NULL, WNOHANG, NULL) > 0);
/macosx-10.10/postfix-255/postfix/src/master/
H A Dmaster_spawn.c300 while ((pid = waitpid((pid_t) - 1, &status, WNOHANG)) > 0) {
/macosx-10.10/procmail-14/procmail/src/
H A Dformisc.c178 while(children&&waitpid((pid_t)-1,&excode,WNOHANG)>0)
/macosx-10.10/shell_cmds-179/script/
H A Dscript.c233 while ((pid = wait3(&status, WNOHANG, 0)) > 0)
/macosx-10.10/PostgreSQL-97/Support/backup_restore/
H A Dxpostgres229 my $pid = waitpid $g_postgres_proccess_pid, WNOHANG;
900 while ( ( $pid = waitpid -1, WNOHANG ) > 0 ) {
/macosx-10.10/bash-94.1.2/bash-3.2/
H A Dnojobs.c428 # if defined (WNOHANG)
433 while ((pid = waitpid (-1, (int *)&status, WNOHANG)) > 0)
435 # endif /* WNOHANG */
/macosx-10.10/lsof-53/lsof/tests/
H A DLTlib.c1043 pid = wait3(NULL, WNOHANG, NULL);
1047 pid = wait3(NULL, WNOHANG, NULL);
H A DLTsock.c569 wpid = wait3(NULL, WNOHANG, NULL);
572 (void) wait3(NULL, WNOHANG, NULL);

Completed in 145 milliseconds

1234