| /freebsd-10-stable/contrib/gdb/gdb/ |
| D | gdb_wait.h | 113 #ifndef WUNTRACED 114 #define WUNTRACED 2 /* Report status of stopped children. */ macro
|
| /freebsd-10-stable/contrib/tcsh/ |
| D | tc.wait.h | 145 # ifndef WUNTRACED 146 # define WUNTRACED 2 /* tell about stopped, untraced children */ macro
|
| D | sh.proc.c | 188 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru); in pchild() 194 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru); in pchild() 197 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru); in pchild() 201 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru); in pchild() 208 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG)); in pchild() 215 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), 0); in pchild() 218 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG)); in pchild() 239 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG)); in pchild() 244 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), 0); in pchild() 263 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG)); in pchild()
|
| D | mi.wait.h | 27 #define WUNTRACED 2 /* for job control; not implemented */ macro
|
| /freebsd-10-stable/sys/sys/ |
| D | wait.h | 79 #define WUNTRACED 2 /* Tell about stopped, untraced children. */ macro 80 #define WSTOPPED WUNTRACED /* SUS compatibility */
|
| /freebsd-10-stable/lib/libproc/ |
| D | proc_create.c | 102 if (waitpid(pid, &status, WUNTRACED) == -1) { in proc_attach() 163 if (waitpid(pid, &status, WUNTRACED) == -1) { in proc_create()
|
| D | proc_util.c | 91 waitpid(phdl->pid, &status, WUNTRACED); in proc_detach() 149 if (waitpid(phdl->pid, &status, WUNTRACED) < 0) { in proc_wstatus()
|
| /freebsd-10-stable/contrib/netbsd-tests/lib/libc/sys/ |
| D | t_wait_noproc.c | 146 WUNTRACED, in get_options6() 191 WUNTRACED, in get_options4()
|
| /freebsd-10-stable/release/picobsd/tinyware/oinit/ |
| D | oinit.c | 788 pid=waitpid(-1,(int *)0,WUNTRACED); in run_single() 809 wpid=waitpid(pid,(int *)0,WUNTRACED); in run_single() 872 while(waitpid(-1,(int *)0,WNOHANG|WUNTRACED)>0) continue; in transition_machine()
|
| /freebsd-10-stable/contrib/amd/include/ |
| D | am_defs.h | 539 # undef WUNTRACED 549 # undef WUNTRACED
|
| /freebsd-10-stable/release/picobsd/tinyware/passwd/ |
| D | pw_util.c | 218 editpid = waitpid(editpid, (int *)&pstat, WUNTRACED); in pw_edit()
|
| /freebsd-10-stable/crypto/openssh/ |
| D | sandbox-systrace.c | 134 pid = waitpid(child_pid, &status, WUNTRACED); in ssh_sandbox_parent()
|
| D | scp.c | 176 while (waitpid(do_cmd_pid, &status, WUNTRACED) == -1 && in suspchild()
|
| /freebsd-10-stable/contrib/netbsd-tests/kernel/ |
| D | t_lockf.c | 174 ATF_REQUIRE_MSG(waitpid(pid[i], &status, WUNTRACED) >= 0, in ATF_TC_BODY()
|
| /freebsd-10-stable/sys/kern/ |
| D | kern_exit.c | 1185 if ((options & ~(WUNTRACED | WNOHANG | WCONTINUED | WNOWAIT | in kern_wait6() 1188 if ((options & (WEXITED | WUNTRACED | WCONTINUED | WTRAPPED)) == 0) { in kern_wait6() 1249 if ((options & WUNTRACED) != 0 && in kern_wait6()
|
| /freebsd-10-stable/usr.bin/rpcgen/ |
| D | rpc_scan.c | 169 waitpid(childpid, &stat, WUNTRACED); in get_token()
|
| /freebsd-10-stable/sbin/init/ |
| D | init.c | 993 if ((wpid = waitpid(-1, &status, WUNTRACED)) != -1) in single_user() 1109 if ((wpid = waitpid(-1, &status, WUNTRACED)) != -1) in run_script() 1916 if ((wpid = waitpid(-1, &status, WUNTRACED)) != -1) in runshutdown()
|
| /freebsd-10-stable/usr.bin/rlogin/ |
| D | rlogin.c | 362 pid = wait3(&status, WNOHANG|WUNTRACED, NULL); in catch_child()
|
| /freebsd-10-stable/usr.bin/su/ |
| D | su.c | 456 while ((pid = waitpid(child_pid, &statusp, WUNTRACED)) != -1) { in main()
|
| /freebsd-10-stable/lib/libutil/ |
| D | pw_util.c | 325 if (waitpid(editpid, &pstat, WUNTRACED) == -1) { in pw_edit()
|
| /freebsd-10-stable/contrib/apr/threadproc/unix/ |
| D | proc.c | 615 int waitpid_options = WUNTRACED; in apr_proc_wait()
|
| /freebsd-10-stable/sys/compat/linux/ |
| D | linux_misc.c | 1051 if (options & ~(WNOHANG | WNOWAIT | WEXITED | WUNTRACED | WCONTINUED)) in linux_waitid() 1053 if (!(options & (WEXITED | WUNTRACED | WCONTINUED))) in linux_waitid() 2518 *bsdopts |= WUNTRACED; in linux_to_bsd_waitopts()
|
| /freebsd-10-stable/crypto/heimdal/appl/telnet/telnetd/ |
| D | sys_term.c | 1598 int flags = WNOHANG|WUNTRACED; in cleanup()
|
| /freebsd-10-stable/contrib/sendmail/include/sm/ |
| D | conf.h | 2336 # undef WUNTRACED
|
| /freebsd-10-stable/bin/sh/ |
| D | jobs.c | 1070 wflags = WUNTRACED | WCONTINUED; in dowait()
|