Home
last modified time | relevance | path

Searched refs:WUNTRACED (Results 1 – 25 of 30) sorted by relevance

12

/freebsd-12-stable/contrib/gdb/gdb/
Dgdb_wait.h113 #ifndef WUNTRACED
114 #define WUNTRACED 2 /* Report status of stopped children. */ macro
/freebsd-12-stable/contrib/tcsh/
Dtc.wait.h144 # ifndef WUNTRACED
145 # define WUNTRACED 2 /* tell about stopped, untraced children */ macro
Dsh.proc.c184 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru); in pchild()
190 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru); in pchild()
193 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru); in pchild()
197 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru); in pchild()
204 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG)); in pchild()
211 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), 0); in pchild()
214 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG)); in pchild()
235 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG)); in pchild()
240 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), 0); in pchild()
259 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG)); in pchild()
Dmi.wait.h27 #define WUNTRACED 2 /* for job control; not implemented */ macro
/freebsd-12-stable/sys/sys/
Dwait.h81 #define WUNTRACED 2 /* Tell about stopped, untraced children. */ macro
82 #define WSTOPPED WUNTRACED /* SUS compatibility */
/freebsd-12-stable/lib/libproc/
Dproc_util.c105 waitpid(pid, &status, WUNTRACED); in proc_detach()
163 if (waitpid(proc_getpid(phdl), &status, WUNTRACED) < 0) { in proc_wstatus()
Dproc_create.c155 if (waitpid(pid, &status, WUNTRACED) == -1) { in proc_attach()
213 if (waitpid(pid, &status, WUNTRACED) == -1) { in proc_create()
/freebsd-12-stable/contrib/netbsd-tests/lib/libc/sys/
Dt_wait_noproc.c146 WUNTRACED, in get_options6()
191 WUNTRACED, in get_options4()
/freebsd-12-stable/release/picobsd/tinyware/oinit/
Doinit.c788 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-12-stable/contrib/amd/include/
Dam_defs.h539 # undef WUNTRACED
549 # undef WUNTRACED
/freebsd-12-stable/release/picobsd/tinyware/passwd/
Dpw_util.c220 editpid = waitpid(editpid, (int *)&pstat, WUNTRACED); in pw_edit()
/freebsd-12-stable/crypto/openssh/
Dsandbox-systrace.c134 pid = waitpid(child_pid, &status, WUNTRACED); in ssh_sandbox_parent()
/freebsd-12-stable/contrib/netbsd-tests/kernel/
Dt_lockf.c174 ATF_REQUIRE_MSG(waitpid(pid[i], &status, WUNTRACED) >= 0, in ATF_TC_BODY()
/freebsd-12-stable/sys/kern/
Dkern_exit.c1216 if ((options & ~(WUNTRACED | WNOHANG | WCONTINUED | WNOWAIT | in kern_wait6()
1219 if ((options & (WEXITED | WUNTRACED | WCONTINUED | WTRAPPED)) == 0) { in kern_wait6()
1272 if ((options & WUNTRACED) != 0 && in kern_wait6()
/freebsd-12-stable/sbin/decryptcore/
Ddecryptcore.c68 if (waitpid(pid, &status, WUNTRACED | WEXITED) == -1) { in wait_for_process()
/freebsd-12-stable/usr.bin/rpcgen/
Drpc_scan.c169 waitpid(childpid, &stat, WUNTRACED); in get_token()
/freebsd-12-stable/sbin/init/
Dinit.c983 if ((wpid = waitpid(-1, &status, WUNTRACED)) != -1) in single_user()
1142 if ((wpid = waitpid(-1, &status, WUNTRACED)) != -1) in run_script()
1941 if ((wpid = waitpid(-1, &status, WUNTRACED)) != -1) in runshutdown()
/freebsd-12-stable/usr.bin/su/
Dsu.c458 while ((pid = waitpid(child_pid, &statusp, WUNTRACED)) != -1) { in main()
/freebsd-12-stable/lib/libutil/
Dpw_util.c323 if (waitpid(editpid, &pstat, WUNTRACED) == -1) { in pw_edit()
/freebsd-12-stable/sys/compat/linux/
Dlinux_misc.c999 if (options & ~(WNOHANG | WNOWAIT | WEXITED | WUNTRACED | WCONTINUED)) in linux_waitid()
1001 if (!(options & (WEXITED | WUNTRACED | WCONTINUED))) in linux_waitid()
2368 *bsdopts |= WUNTRACED; in linux_to_bsd_waitopts()
/freebsd-12-stable/contrib/apr/threadproc/unix/
Dproc.c627 int waitpid_options = WUNTRACED; in apr_proc_wait()
/freebsd-12-stable/crypto/heimdal/appl/telnet/telnetd/
Dsys_term.c1598 int flags = WNOHANG|WUNTRACED; in cleanup()
/freebsd-12-stable/contrib/mandoc/
Dmain.c1289 WUNTRACED)) == -1 && errno == EINTR) in run_pager()
/freebsd-12-stable/bin/sh/
Djobs.c1169 wflags = WUNTRACED | WCONTINUED; in dowait()
/freebsd-12-stable/contrib/sendmail/include/sm/
Dconf.h2357 # undef WUNTRACED

12