Symbol: WNOHANG
bin/csh/proc.c
99
(setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru);
bin/ksh/jobs.c
1268
pid = waitpid(-1, &status, (WNOHANG|WUNTRACED));
bin/sh/jobs.c
1829
flags |= WNOHANG;
crypto/dist/ipsec-tools/src/racoon/session.c
451
while (waitpid(-1, &s, WNOHANG) > 0)
distrib/utils/ssh/ssh.c
262
while ((cpid = waitpid(0, &cstat, WNOHANG)) > 0) {
games/sail/pl_1.c
136
pid = wait3(&status, WNOHANG, (struct rusage *)0);
libexec/httpd/daemon-bozo.c
76
while (waitpid(-1, NULL, WNOHANG) > 0)
libexec/lfs_cleanerd/coalesce.c
191
if (waitpid(childpid, NULL, WNOHANG) == childpid)
sbin/init/init.c
766
while (waitpid(-1, NULL, WNOHANG) > 0)
sbin/init/init.c
868
while (waitpid(-1, NULL, WNOHANG) > 0)
sbin/mount_portal/puffs_portal.c
101
while (waitpid(-1, NULL, WNOHANG) != -1)
sbin/newfs/newfs.c
734
res = waitpid(pid, &status, WNOHANG);
sys/compat/linux/arch/alpha/linux_osf1.c
76
{ OSF1_WNOHANG, OSF1_WNOHANG, WNOHANG },
sys/compat/linux/common/linux_misc.c
314
if (pid == 0 && options & WNOHANG) {
sys/compat/linux/common/linux_misc.c
343
options |= WNOHANG;
sys/compat/linux32/common/linux32_wait.c
113
options |= WNOHANG;
sys/kern/kern_exit.c
1135
((options & WNOHANG) != 0 && dead == NULL)) {
sys/sys/wait.h
131
#define WALLOPTS (WNOHANG|WALTSIG|WALLSIG|WNOWAIT|WNOZOMBIE|WSELECTOPTS)
tests/fs/common/fstest_puffs.c
439
if (waitpid(pargs->pta_childpid, &status, WNOHANG) > 0)
tests/fs/common/fstest_puffs.c
443
if (waitpid(pargs->pta_childpid, &status, WNOHANG) > 0)
tests/kernel/kqueue/t_proc4.c
132
WNOHANG,
tests/lib/libc/sys/t_ptrace_fork_wait.h
1160
wpid = TWAIT_GENERIC(tracee, NULL, WNOHANG), 0);
tests/lib/libc/sys/t_ptrace_fork_wait.h
631
wpid = TWAIT_GENERIC(tracee, NULL, WNOHANG), 0);
tests/lib/libc/sys/t_ptrace_kill.c
113
waitpid(pid, NULL, WNOHANG);
tests/lib/libc/sys/t_ptrace_lwp_wait.h
608
TWAIT_REQUIRE_SUCCESS(wpid = TWAIT_GENERIC(tracee, &status, WNOHANG),
tests/lib/libc/sys/t_ptrace_signal_wait.h
2062
wpid = TWAIT_GENERIC(tracee, NULL, WNOHANG), 0);
tests/lib/libc/sys/t_ptrace_threads_wait.h
611
TWAIT_REQUIRE_SUCCESS(wpid = TWAIT_GENERIC(child, &status, WNOHANG), 0);
tests/lib/libc/sys/t_ptrace_topology_wait.h
186
wpid = TWAIT_GENERIC(tracee, NULL, WNOHANG), 0);
tests/lib/libc/sys/t_ptrace_topology_wait.h
205
wpid = TWAIT_GENERIC(tracee, &status, WNOHANG), 0);
tests/lib/libc/sys/t_ptrace_topology_wait.h
653
wpid = TWAIT_GENERIC(tracee, &status, WNOHANG), 0);
tests/lib/libc/sys/t_ptrace_topology_wait.h
666
TWAIT_REQUIRE_SUCCESS(wpid = TWAIT_GENERIC(tracee, &status, WNOHANG),
tests/lib/libc/sys/t_select.c
160
switch (waitpid(pid, &status, WNOHANG)) {
tests/lib/libc/sys/t_select.c
198
switch (waitpid(pid, &status, WNOHANG)) {
tests/lib/libc/sys/t_wait_noproc_wnohang.c
29
#define TWAIT_OPTION WNOHANG
tests/net/icmp/t_ping.c
438
if (waitpid(-1, &status, WNOHANG) > 0) {
tests/net/mcast/mcast.c
368
switch (waitpid(pid, &status, WNOHANG)) {
usr.bin/mail/popen.c
493
while ((pid = waitpid((pid_t)-1, &status, WNOHANG)) > 0) {
usr.bin/make/job.c
1945
while ((pid = waitpid((pid_t)-1, &status, WNOHANG | WUNTRACED)) > 0) {
usr.bin/make/job.c
2181
rval = waitpid((pid_t)-1, &status, WNOHANG);
usr.bin/make/job.c
2543
while (waitpid((pid_t)-1, &status, WNOHANG) > 0)
usr.bin/rlogin/rlogin.c
414
pid = waitpid(-1, &status, WNOHANG|WUNTRACED);
usr.bin/xargs/xargs.c
580
WNOHANG : 0)) > 0) {
usr.sbin/autofs/automountd.c
408
pid = wait4(-1, &status, WNOHANG, NULL);
usr.sbin/faithd/faithd.c
671
while ((pid = wait3(&status, WNOHANG, (struct rusage *)0)) > 0)
usr.sbin/faithd/tcp.c
97
pid = wait3(&status, WNOHANG, (struct rusage *)0);
usr.sbin/inetd/inetd.c
693
pid = wait3(&status, WNOHANG, NULL);
usr.sbin/lpr/lpd/lpd.c
399
while (wait3(&status, WNOHANG, 0) > 0)
usr.sbin/puffs/mount_psshfs/psshfs.c
396
while (waitpid(-1, &dummy, WNOHANG) > 0)
usr.sbin/rpc.lockd/lockd_lock.c
441
pid = wait4(-1, &sstatus, WNOHANG, NULL);
usr.sbin/rpcbind/rpcbind.c
954
while (wait3(NULL, WNOHANG, NULL) > 0)
usr.sbin/sysinst/net.c
863
wait4(pid, &status, WNOHANG, 0);
usr.sbin/sysinst/run.c
572
pid = wait4(child, &status, WNOHANG, 0);
usr.sbin/syslogd/syslogd.c
2753
while ((pid = wait3(&status, WNOHANG, NULL)) > 0) {
usr.sbin/syslogd/syslogd.c
4296
if (waitpid(pid, &status, WNOHANG) > 0)