HomeSort by: relevance | last modified time | path
    Searched refs:WAIT_ANY (Results 1 - 8 of 8) sorted by relevancy

  /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));
  /src/tests/lib/libc/sys/
t_wait_noproc.c 62 "Test that waitpid(2) returns ECHILD for WAIT_ANY and option %s",
68 ATF_REQUIRE_ERRNO(ECHILD, waitpid(WAIT_ANY, NULL, TWAIT_OPTION) == -1);
102 "Test that wait4(2) returns ECHILD for WAIT_ANY and option %s",
109 wait4(WAIT_ANY, NULL, TWAIT_OPTION, NULL) == -1);
219 "Test that waitpid(2) returns ECHILD for WAIT_ANY and valid "
233 waitpid(WAIT_ANY, NULL, o | TWAIT_OPTION) == -1);
283 "Test that wait4(2) returns ECHILD for WAIT_ANY and option %s",
296 wait4(WAIT_ANY, NULL, o | TWAIT_OPTION, NULL) == -1);
  /src/sys/compat/common/
kern_exit_43.c 89 int error, status, child_pid = WAIT_ANY;
  /src/sys/sys/
wait.h 140 #define WAIT_ANY (-1) /* any process */
  /src/sys/compat/sunos/
sunos_misc.c 128 SCARG(&bsd_ua, pid) = SCARG(uap, pid) == 0 ? WAIT_ANY : SCARG(uap, pid);
  /src/sys/kern/
kern_exit.c 716 if (*pid == WAIT_ANY) {
  /src/sys/compat/sunos32/
sunos32_misc.c 201 SCARG(&bsd_ua, pid) = SCARG(uap, pid) == 0 ? WAIT_ANY : SCARG(uap, pid);

Completed in 17 milliseconds