/src/lib/libc/gen/ |
wait3.c | 1 /* $NetBSD: wait3.c,v 1.10 2012/03/20 16:36:05 matt Exp $ */ 35 static char sccsid[] = "@(#)wait3.c 8.1 (Berkeley) 6/4/93"; 37 __RCSID("$NetBSD: wait3.c,v 1.10 2012/03/20 16:36:05 matt Exp $"); 48 wait3(int *istat, int options, struct rusage *rup) function in typeref:typename:pid_t
|
Makefile.inc | 39 utmpx.c valloc.c vis.c wait.c wait3.c waitid.c waitpid.c warn.c \
|
/src/sys/compat/sys/ |
wait.h | 42 pid_t wait3(int *, int, struct rusage50 *);
|
/src/lib/libc/compat/sys/ |
compat_wait4.c | 46 __warn_references(wait3, 47 "warning: reference to compatibility wait3(); include <sys/wait.h> to generate correct reference") 54 __weak_alias(wait3, _wait3) 61 wait3(int *status, int options, struct rusage50 *ru50)
|
/src/tests/lib/libc/sys/ |
t_wait_noproc.c | 86 ATF_TC(wait3); 87 ATF_TC_HEAD(wait3, tc) 90 "Test that wait3(2) returns ECHILD for no child"); 93 ATF_TC_BODY(wait3, tc) 95 ATF_REQUIRE_ERRNO(ECHILD, wait3(NULL, TWAIT_OPTION, NULL) == -1); 263 "Test that wait3(2) returns ECHILD for no child"); 272 printf("Testing wait3(2) with options %x\n", o); 275 wait3(NULL, o | TWAIT_OPTION, NULL) == -1); 329 ATF_TP_ADD_TC(tp, wait3);
|
t_ptrace_wait.h | 85 # define TWAIT_FNAME "wait3" 86 # define TWAIT_WAIT4TYPE(a,b,c,d) wait3((b),(c),(d)) 87 # define TWAIT_GENERIC(a,b,c) wait3((b),(c),NULL) 111 * - TWAIT_GENERIC() (wait, wait2, waitpid, wait3, wait4, wait6) 112 * - TWAIT_WAIT4TYPE() (wait2, waitpid, wait3, wait4) 119 * - TWAIT_HAVE_STATUS (wait, wait2, waitpid, wait3, wait4, wait6) 120 * - TWAIT_HAVE_RUSAGE (wait3, wait4) 121 * - TWAIT_HAVE_RETPID (wait, wait2, waitpid, wait3, wait4, wait6)
|
/src/games/sail/ |
pl_1.c | 136 pid = wait3(&status, WNOHANG, (struct rusage *)0);
|
/src/sys/sys/ |
wait.h | 45 * and the alternate interfaces that use it (wait, wait3, waitpid). 95 * Is the default for wait/wait3/wait4/waitpid (to report children 208 pid_t wait3(int *, int, struct rusage *) __RENAME(__wait350);
|
/src/usr.sbin/faithd/ |
tcp.c | 97 pid = wait3(&status, WNOHANG, (struct rusage *)0);
|
faithd.c | 671 while ((pid = wait3(&status, WNOHANG, (struct rusage *)0)) > 0)
|
/src/usr.sbin/rpcbind/ |
rpcbind.c | 954 while (wait3(NULL, WNOHANG, NULL) > 0)
|
/src/usr.sbin/lpr/lpd/ |
lpd.c | 399 while (wait3(&status, WNOHANG, 0) > 0)
|
printjob.c | 718 wait3(&status, WUNTRACED, 0)) > 0 && child_pid != ofilter)
|
/src/lib/libc/include/ |
namespace.h | 803 #define wait3 _wait3 macro
|
/src/usr.sbin/inetd/ |
inetd.c | 643 pid = wait3(&status, WNOHANG, NULL);
|
/src/bin/csh/ |
proc.c | 98 pid = wait3(&w,
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_common_interceptors.inc | 121 #define wait3 __wait350 2415 INTERCEPTOR(int, wait3, int *status, int options, void *rusage) { 2417 COMMON_INTERCEPTOR_ENTER(ctx, wait3, status, options, rusage); 2421 int res = REAL(wait3)(status, options, rusage); 2463 COMMON_INTERCEPT_FUNCTION(wait3);
|
/src/usr.sbin/syslogd/ |
syslogd.c | 2747 while ((pid = wait3(&status, WNOHANG, NULL)) > 0) {
|