Symbol: WUNTRACED
bin/csh/proc.c
97
(setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru);
bin/ksh/jobs.c
1154
pid = waitpid(-1, &status, (WNOHANG|WUNTRACED));
lib/libutil/passwd.c
246
editpid = waitpid(editpid, (int *)&pstat, WUNTRACED);
regress/lib/libc/sys/t_wait_noproc.c
149
WUNTRACED,
regress/lib/libc/sys/t_wait_noproc.c
196
WUNTRACED,
regress/sys/kern/signal/sig-stop/sig-stop.c
50
} while(waitpid(child, &status, WCONTINUED|WUNTRACED) > 0 &&
regress/sys/kern/signal/sig-stop2/sig-stop2.c
116
if (waitpid(child, &status, WCONTINUED|WUNTRACED) <= 0)
regress/sys/kern/signal/sig-stop2/sig-stop2.c
124
if (waitpid(child, &status, WCONTINUED|WUNTRACED) <= 0)
regress/sys/kern/signal/sig-stop3/sig-stop3.c
86
if (waitpid(child, &status, WCONTINUED|WUNTRACED) <= 0)
regress/sys/kern/signal/signal-stress/signal-stress.c
174
if (waitpid(pids[i], &status, WUNTRACED) != pids[i])
regress/sys/kern/signal/signal-stress/signal-stress.c
82
if (waitpid(pid, &status, WUNTRACED) != pid)
sbin/init/init.c
622
if ((wpid = waitpid(-1, &status, WUNTRACED)) != -1)
sbin/init/init.c
706
if ((wpid = waitpid(-1, &status, WUNTRACED)) != -1)
sys/kern/kern_exit.c
604
if (((pr->ps_flags & PS_TRACED) || (options & WUNTRACED)) &&
sys/kern/kern_exit.c
701
if (SCARG(uap, options) &~ (WUNTRACED|WNOHANG|WCONTINUED))
sys/sys/wait.h
83
#define WSTOPPED WUNTRACED
usr.bin/mandoc/main.c
1382
WUNTRACED)) == -1 && errno == EINTR)
usr.bin/ssh/scp.c
188
while (waitpid(pid, &status, WUNTRACED) == -1 &&
usr.bin/ssh/sftp.c
220
while (waitpid(sshpid, NULL, WUNTRACED) == -1 && errno == EINTR)
usr.bin/tmux/server.c
465
switch (pid = waitpid(WAIT_ANY, &status, WNOHANG|WUNTRACED)) {
usr.sbin/lpd/printer.c
1247
while ((pid = waitpid(WAIT_ANY, &status, WUNTRACED)) && pid != prn->opid)
usr.sbin/lpr/lpd/printjob.c
718
while ((pid = waitpid((pid_t)-1, &status, WUNTRACED)) > 0