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

  /src/sys/sys/
wait.h 99 * WNOWAIT
108 #define WNOWAIT 0x00010000 /* Don't mark child 'P_WAITED' */
131 #define WALLOPTS (WNOHANG|WALTSIG|WALLSIG|WNOWAIT|WNOZOMBIE|WSELECTOPTS)
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/sys/
wait.d 315 WNOWAIT
330 enum WNOWAIT = 0x01000000;
344 enum WNOWAIT = 0x00000020;
357 enum WNOWAIT = 8;
385 enum WNOWAIT = 0x00010000;
392 //enum WNOWAIT
398 enum WNOWAIT = 8;
406 enum WNOWAIT = 128;
  /src/tests/lib/libc/sys/
t_wait_noproc.c 139 * WSTOPPED, WTRAPPED or WCONTINUED. Single option WNOWAIT
144 WNOWAIT, /* First in order to exclude it easily */
154 /* Skip empty and sole WNOWAIT option */
187 WNOWAIT,
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
wait-process.c 256 #if HAVE_WAITID && defined WNOWAIT && 0
257 /* Commented out because waitid() with WNOWAIT doesn't work: On Solaris 7
260 /* Use of waitid() with WNOWAIT avoids a race condition: If slave_process is
269 if (waitid (P_PID, child, &info, slave_process ? WNOWAIT : 0) < 0)
  /src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
Program.inc 362 // For WNOHANG, we use waitid (which supports WNOWAIT) until the child process
367 waitid(P_PID, pid, &WaitIdInfo, WNOWAIT | WEXITED | options);
  /src/sys/kern/
kern_exit.c 689 if (options & WNOWAIT) {
1087 if ((options & WNOWAIT) == 0) {
1104 if ((options & WNOWAIT) == 0) {
  /src/external/mit/libuv/dist/src/unix/
process.c 1107 waitid(P_PID, pid, &infop, WNOHANG | WNOWAIT | WEXITED) == 0)
  /src/sys/compat/linux/common/
linux_misc.c 351 options |= WNOWAIT;
  /src/external/bsd/libevent/dist/test/
regress.c 911 #ifdef WNOWAIT
912 if ((waitpid(pid, &status, WNOWAIT) == -1 && errno == EINVAL) &&
  /src/external/bsd/ntp/dist/sntp/libevent/test/
regress.c 909 #ifdef WNOWAIT
910 if ((waitpid(pid, &status, WNOWAIT) == -1 && errno == EINVAL) &&

Completed in 49 milliseconds