Searched refs:WUNTRACED (Results 1 - 25 of 31) sorted by relevance

12

/freebsd-10-stable/contrib/gdb/gdb/
H A Dgdb_wait.h40 in POSIX.1. We fail to define WNOHANG and WUNTRACED, which POSIX.1
113 #ifndef WUNTRACED
114 #define WUNTRACED 2 /* Report status of stopped children. */ macro
/freebsd-10-stable/contrib/tcsh/
H A Dmi.wait.h27 #define WUNTRACED 2 /* for job control; not implemented */ macro
H A Dtc.wait.h145 # ifndef WUNTRACED
146 # define WUNTRACED 2 /* tell about stopped, untraced children */
H A Dsh.proc.c188 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru);
194 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru);
197 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru);
201 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru);
208 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG));
215 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), 0);
218 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG));
239 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG));
244 (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), 0);
263 (setintr && (intty || insource) ? WNOHANG | WUNTRACED
[all...]
/freebsd-10-stable/sys/sys/
H A Dwait.h71 * returning an error indication in this case (pid==0). WUNTRACED
79 #define WUNTRACED 2 /* Tell about stopped, untraced children. */ macro
80 #define WSTOPPED WUNTRACED /* SUS compatibility */
/freebsd-10-stable/lib/libproc/
H A Dproc_create.c102 if (waitpid(pid, &status, WUNTRACED) == -1) {
163 if (waitpid(pid, &status, WUNTRACED) == -1) {
H A Dproc_util.c91 waitpid(phdl->pid, &status, WUNTRACED);
149 if (waitpid(phdl->pid, &status, WUNTRACED) < 0) {
/freebsd-10-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_wait_noproc.c138 * waitid(2) must specify at least one of WEXITED, WUNTRACED,
146 WUNTRACED,
147 WSTOPPED, /* SUS compatibility, equal to WUNTRACED */
191 WUNTRACED,
192 WSTOPPED, /* SUS compatibility, equal to WUNTRACED */
/freebsd-10-stable/release/picobsd/tinyware/passwd/
H A Dpw_util.c218 editpid = waitpid(editpid, (int *)&pstat, WUNTRACED);
/freebsd-10-stable/usr.bin/rpcgen/
H A Drpc_scan.c169 waitpid(childpid, &stat, WUNTRACED);
/freebsd-10-stable/release/picobsd/tinyware/oinit/
H A Doinit.c788 pid=waitpid(-1,(int *)0,WUNTRACED);
809 wpid=waitpid(pid,(int *)0,WUNTRACED);
872 while(waitpid(-1,(int *)0,WNOHANG|WUNTRACED)>0) continue;
/freebsd-10-stable/contrib/netbsd-tests/kernel/
H A Dt_lockf.c174 ATF_REQUIRE_MSG(waitpid(pid[i], &status, WUNTRACED) >= 0,
/freebsd-10-stable/crypto/openssh/
H A Dsandbox-systrace.c134 pid = waitpid(child_pid, &status, WUNTRACED);
H A Dscp.c176 while (waitpid(do_cmd_pid, &status, WUNTRACED) == -1 &&
/freebsd-10-stable/contrib/amd/include/
H A Dam_defs.h539 # undef WUNTRACED macro
549 # undef WUNTRACED macro
/freebsd-10-stable/sys/kern/
H A Dkern_exit.c1185 if ((options & ~(WUNTRACED | WNOHANG | WCONTINUED | WNOWAIT |
1188 if ((options & (WEXITED | WUNTRACED | WCONTINUED | WTRAPPED)) == 0) {
1249 if ((options & WUNTRACED) != 0 &&
/freebsd-10-stable/sbin/init/
H A Dinit.c993 if ((wpid = waitpid(-1, &status, WUNTRACED)) != -1)
1109 if ((wpid = waitpid(-1, &status, WUNTRACED)) != -1)
1916 if ((wpid = waitpid(-1, &status, WUNTRACED)) != -1)
/freebsd-10-stable/usr.bin/rlogin/
H A Drlogin.c362 pid = wait3(&status, WNOHANG|WUNTRACED, NULL);
/freebsd-10-stable/usr.bin/su/
H A Dsu.c456 while ((pid = waitpid(child_pid, &statusp, WUNTRACED)) != -1) {
/freebsd-10-stable/contrib/apr/threadproc/unix/
H A Dproc.c615 int waitpid_options = WUNTRACED;
/freebsd-10-stable/lib/libutil/
H A Dpw_util.c325 if (waitpid(editpid, &pstat, WUNTRACED) == -1) {
/freebsd-10-stable/sys/compat/linux/
H A Dlinux_misc.c1051 if (options & ~(WNOHANG | WNOWAIT | WEXITED | WUNTRACED | WCONTINUED))
1053 if (!(options & (WEXITED | WUNTRACED | WCONTINUED)))
2518 *bsdopts |= WUNTRACED;
/freebsd-10-stable/crypto/heimdal/appl/telnet/telnetd/
H A Dsys_term.c1598 int flags = WNOHANG|WUNTRACED;
/freebsd-10-stable/contrib/sendmail/include/sm/
H A Dconf.h2336 # undef WUNTRACED macro
/freebsd-10-stable/bin/sh/
H A Djobs.c1070 wflags = WUNTRACED | WCONTINUED;

Completed in 298 milliseconds

12