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

1 2 3

  /src/lib/libc/gen/
wait.c 55 return (wait4(WAIT_ANY, istat, 0, (struct rusage *)NULL));
wait3.c 50 return (wait4(WAIT_ANY, istat, options, rup));
waitpid.c 54 return (wait4(pid, istat, options, (struct rusage *)0));
  /src/sys/compat/sys/
wait.h 43 pid_t wait4(pid_t, int *, int, struct rusage50 *);
  /src/lib/libc/compat/sys/
compat_wait4.c 48 __warn_references(wait4,
49 "warning: reference to compatibility wait4(); include <sys/wait.h> to generate correct reference")
52 __weak_alias(wait4, _wait4)
58 * libc12 compatible wait4 routine.
74 wait4(pid_t wpid, int *status, int options, struct rusage50 *ru50) function
  /src/external/gpl2/lvm2/dist/lib/misc/
lvm-exec.c 77 if (wait4(pid, &status, 0, NULL) != pid) {
78 log_error("wait4 child process %u failed: %s", pid,
  /src/tests/lib/libc/sys/
t_wait_noproc.c 98 ATF_TC(wait4); variable
99 ATF_TC_HEAD(wait4, tc)
102 "Test that wait4(2) returns ECHILD for WAIT_ANY and option %s",
106 ATF_TC_BODY(wait4, tc)
109 wait4(WAIT_ANY, NULL, TWAIT_OPTION, NULL) == -1);
283 "Test that wait4(2) returns ECHILD for WAIT_ANY and option %s",
293 printf("Testing wait4(2) with options %x\n", o);
296 wait4(WAIT_ANY, NULL, o | TWAIT_OPTION, NULL) == -1);
330 ATF_TP_ADD_TC(tp, wait4);
t_ptrace_wait.h 40 * - wait4(2)-like accepting pid_t, optional options parameter, struct rusage*
48 * In a common use-case wait4(2) and wait6(2)-like function can work the almost
50 * wait6(2) must specify P_PID for idtype to match wpid from wait4(2).
51 * To behave like wait4(2), wait6(2) the 'options' to wait must include
92 # define TWAIT_FNAME "wait4"
93 # define TWAIT_WAIT4TYPE(a,b,c,d) wait4((a),(b),(c),(d))
94 # define TWAIT_GENERIC(a,b,c) wait4((a),(b),(c),NULL)
111 * - TWAIT_GENERIC() (wait, wait2, waitpid, wait3, wait4, wait6)
112 * - TWAIT_WAIT4TYPE() (wait2, waitpid, wait3, wait4)
118 * - TWAIT_HAVE_PID (wait2, waitpid, waitid, wait4, wait6
    [all...]
  /src/external/gpl3/gdb/dist/sim/testsuite/cris/c/
clone1.c 80 retcode = wait4 (-1, &st, WNOHANG | __WCLONE, NULL);
  /src/external/gpl3/gdb.old/dist/sim/testsuite/cris/c/
clone1.c 80 retcode = wait4 (-1, &st, WNOHANG | __WCLONE, NULL);
  /src/sys/sys/
wait.h 44 * This file holds definitions relevant to the wait4 system call
95 * Is the default for wait/wait3/wait4/waitpid (to report children
138 * Tokens for special values of the "pid" parameter to wait4.
148 * Structure of the information in the status word returned by wait4.
210 pid_t wait4(pid_t, int *, int, struct rusage *) __RENAME(__wait450);
  /src/tests/kernel/kqueue/
t_proc4.c 130 ATF_REQUIRE(wait4((pid_t)event.ident,
  /src/usr.bin/time/
time.c 138 if ((pid = wait4(pid, &status, 0, &ru)) == -1)
139 err(EXIT_FAILURE, "wait4 %d failed", pid);
  /src/usr.sbin/autofs/
popen.c 177 pid = wait4(cur->pid, &status, 0, NULL);
automountd.c 406 pid = wait4(-1, &status, 0, NULL);
408 pid = wait4(-1, &status, WNOHANG, NULL);
  /src/crypto/external/bsd/heimdal/dist/lib/kdfs/
k5dfspag.c 322 err = wait4(pid, &wait_status, 0, (struct rusage *) NULL);
  /src/external/ibm-public/postfix/dist/src/util/
sys_compat.c 200 * waitpid() emulation on top of Berkeley UNIX wait4()
212 return wait4(pid, status, options, (struct rusage *) 0);
  /src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
Program.inc 339 using ::wait4;
341 static pid_t (wait4)(pid_t pid, int *status, int options, struct rusage *usage);
349 extern "C" pid_t (wait4)(pid_t pid, int *status, int options,
352 pid_t (llvm::sys::wait4)(pid_t pid, int *status, int options,
358 // AIX wait4 does not work well with WNOHANG.
360 return ::wait4(pid, status, options, usage);
377 return ::wait4(pid, status, options & ~WNOHANG, usage);
412 WaitResult.Pid = sys::wait4(ChildPid, &status, WaitPidOptions, &Info);
  /src/usr.sbin/ypserv/yppush/
yppush.c 407 wait4(pid, NULL, 0, NULL);
  /src/external/gpl2/lvm2/dist/tools/
polldaemon.c 25 while (wait4(-1, NULL, WNOHANG | WUNTRACED, NULL) > 0) ;
  /src/usr.sbin/apmd/
apmd.c 558 wait4(pid, &status, 0, 0);
  /src/usr.sbin/sysinst/
run.c 586 pid = wait4(child, &status, WNOHANG, 0);
  /src/usr.sbin/tprof/
tprof.c 498 pid = wait4(-1, &status, 0, NULL);
503 err(EXIT_FAILURE, "wait4");
  /src/external/gpl3/gdb/dist/gdb/
i386-syscalls.def 138 SYSCALL (114, wait4)
  /src/external/gpl3/gdb.old/dist/gdb/
i386-syscalls.def 138 SYSCALL (114, wait4)

Completed in 21 milliseconds

1 2 3