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

1 2 3 4 5

  /src/tests/lib/libc/sys/
t_wait_noproc_wnohang.c 29 #define TWAIT_OPTION WNOHANG
t_select.c 160 switch (waitpid(pid, &status, WNOHANG)) {
198 switch (waitpid(pid, &status, WNOHANG)) {
t_ptrace_kill.c 113 waitpid(pid, NULL, WNOHANG);
t_ptrace_topology_wait.h 186 wpid = TWAIT_GENERIC(tracee, NULL, WNOHANG), 0);
205 wpid = TWAIT_GENERIC(tracee, &status, WNOHANG), 0);
653 wpid = TWAIT_GENERIC(tracee, &status, WNOHANG), 0);
666 TWAIT_REQUIRE_SUCCESS(wpid = TWAIT_GENERIC(tracee, &status, WNOHANG),
  /src/external/bsd/openldap/dist/include/ac/
wait.h 53 # define WAIT_FLAGS ( WNOHANG | WUNTRACED | WCONTINUED )
55 # define WAIT_FLAGS ( WNOHANG | WUNTRACED )
  /src/external/gpl3/gdb.old/dist/gdbsupport/
gdb_wait.h 38 in POSIX.1. We fail to define WNOHANG and WUNTRACED, which POSIX.1
119 #ifndef WNOHANG
120 #define WNOHANG 1 /* Don't block waiting. */
  /src/external/gpl3/gdb/dist/gdbsupport/
gdb_wait.h 38 in POSIX.1. We fail to define WNOHANG and WUNTRACED, which POSIX.1
119 #ifndef WNOHANG
120 #define WNOHANG 1 /* Don't block waiting. */
  /src/sys/sys/
wait.h 80 * WNOHANG
103 #define WNOHANG 0x00000001 /* don't hang in wait */
131 #define WALLOPTS (WNOHANG|WALTSIG|WALLSIG|WNOWAIT|WNOZOMBIE|WSELECTOPTS)
  /src/games/sail/
pl_1.c 136 pid = wait3(&status, WNOHANG, (struct rusage *)0);
  /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/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/sys/
wait.d 39 WNOHANG
45 enum WNOHANG = 1;
55 enum WNOHANG = 1;
65 enum WNOHANG = 1;
76 enum WNOHANG = 1;
86 enum WNOHANG = 1;
97 enum WNOHANG = 1;
107 enum WNOHANG = 64;
  /src/external/bsd/am-utils/dist/amd/
sched.c 261 while ((pid = waitpid((pid_t) -1, &w, WNOHANG)) > 0) {
263 while ((pid = wait3( &w, WNOHANG, (struct rusage *) NULL)) > 0) {
  /src/tests/kernel/kqueue/
t_proc4.c 132 WNOHANG,
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/gc/
os.d 65 waited_pid = waitpid(pid, &status, block ? 0 : WNOHANG);
81 import core.sys.posix.sys.wait: waitpid, WNOHANG;
  /src/crypto/external/bsd/heimdal/dist/kadmin/
kadm_conn.c 103 while ((waitpid(-1, &status, WNOHANG)) > 0)
222 while ((waitpid(-1, &status, WNOHANG)) > 0)
  /src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
Program.inc 355 assert((options & ~WNOHANG) == 0 && "Expecting WNOHANG at most!");
358 // AIX wait4 does not work well with WNOHANG.
359 if (!(options & WNOHANG))
362 // For WNOHANG, we use waitid (which supports WNOWAIT) until the child process
377 return ::wait4(pid, status, options & ~WNOHANG, usage);
402 WaitPidOptions = WNOHANG;
  /src/sys/compat/linux32/common/
linux32_wait.c 113 options |= WNOHANG;
  /src/external/gpl2/lvm2/dist/daemons/cmirrord/
clogd.c 200 while (!waitpid(pid, &status, WNOHANG) && !exit_now);
  /src/external/gpl2/lvm2/dist/test/
harness.c 104 while ((w = waitpid(pid, &st, WNOHANG)) == 0) {
  /src/external/gpl3/gcc/dist/libgfortran/intrinsics/
execute_command_line.c 77 while (waitpid ((pid_t)(-1), NULL, WNOHANG) > 0) {}
  /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/
execute_command_line.c 77 while (waitpid ((pid_t)(-1), NULL, WNOHANG) > 0) {}
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
slow-waitpid.c 40 -1 and the WNOHANG option is set) so that only 1 per second can return
100 cached then later calls to waitpid with the WNOHANG option will return a
129 the pid is -1 and the WNOHANG option is set. If calls occur faster than
216 if ((options & WNOHANG) != 0
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
slow-waitpid.c 40 -1 and the WNOHANG option is set) so that only 1 per second can return
100 cached then later calls to waitpid with the WNOHANG option will return a
129 the pid is -1 and the WNOHANG option is set. If calls occur faster than
216 if ((options & WNOHANG) != 0
  /src/libexec/lfs_cleanerd/
coalesce.c 191 if (waitpid(childpid, NULL, WNOHANG) == childpid)

Completed in 31 milliseconds

1 2 3 4 5