HomeSort by: relevance | last modified time | path
    Searched refs:wait3 (Results 1 - 25 of 37) sorted by relevancy

1 2

  /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
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); variable
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/external/gpl2/xcvs/dist/lib/
waitpid.c 70 pid_t p = wait3 (status, options, (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
209 pid_t wait3(int *, int, struct rusage *) __RENAME(__wait350);
  /src/external/bsd/am-utils/dist/amd/
sched.c 263 while ((pid = wait3( &w, WNOHANG, (struct rusage *) NULL)) > 0) {
  /src/external/bsd/libpcap/dist/lbl/
os-sunos4.h 195 pid_t wait3(int *, int, struct rusage *);
  /src/external/bsd/tcpdump/dist/lbl/
os-sunos4.h 193 pid_t wait3(int *, int, struct rusage *);
  /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/external/gpl2/gmake/dist/
job.c 125 # ifndef wait3
126 extern int wait3 ();
128 # define WAIT_NOHANG(status) wait3 ((status), WNOHANG, (struct rusage *) 0)
129 # endif /* Have wait3. */
415 If we don't have either waitpid or wait3, then make is unreliable, but we
498 all modern, POSIX-y systems that support wait3() or waitpid().
  /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/usr.sbin/rpcbind/
rpcbind.c 954 while (wait3(NULL, WNOHANG, NULL) > 0)
  /src/external/bsd/am-utils/dist/hlfsd/
homedir.c 295 while ((child = wait3(&status, WNOHANG, (struct rusage *) NULL)) > 0) {
788 fprintf(dumpfile, ", child from wait3=%lu:\n", (long) this);
  /src/external/bsd/am-utils/dist/include/
am_defs.h 1564 extern int wait3(int *statusp, int options, struct rusage *rusage);
  /src/external/bsd/openldap/dist/servers/lloadd/
main.c 952 while ( wait3( NULL, WNOHANG, NULL ) > 0 || errno == EINTR );
  /src/external/bsd/openldap/dist/servers/slapd/
main.c 985 while ( wait3( NULL, WNOHANG, NULL ) > 0 || errno == EINTR );
  /src/lib/libc/include/
namespace.h 803 #define wait3 _wait3 macro
  /src/bin/csh/
proc.c 98 pid = wait3(&w,
  /src/usr.sbin/inetd/
inetd.c 693 pid = wait3(&status, WNOHANG, NULL);

Completed in 29 milliseconds

1 2