/external/bison/lib/ |
D | sys_wait.in.h | 115 _GL_FUNCDECL_SYS (waitpid, pid_t, (pid_t pid, int *statusp, int options)); 117 _GL_CXXALIAS_SYS (waitpid, pid_t, (pid_t pid, int *statusp, int options)); 118 _GL_CXXALIASWARN (waitpid); 120 # undef waitpid 122 _GL_WARN_ON_USE (waitpid, "waitpid is unportable - "
|
D | waitpid.c | 27 waitpid (pid_t pid, int *statusp, int options) in waitpid() function
|
/external/bison/darwin-lib/sys/ |
D | wait.h | 417 _GL_FUNCDECL_SYS (waitpid, pid_t, (pid_t pid, int *statusp, int options)); 419 _GL_CXXALIAS_SYS (waitpid, pid_t, (pid_t pid, int *statusp, int options)); 420 _GL_CXXALIASWARN (waitpid); 422 # undef waitpid 424 _GL_WARN_ON_USE (waitpid, "waitpid is unportable - "
|
/external/bison/linux-lib/sys/ |
D | wait.h | 417 _GL_FUNCDECL_SYS (waitpid, pid_t, (pid_t pid, int *statusp, int options)); 419 _GL_CXXALIAS_SYS (waitpid, pid_t, (pid_t pid, int *statusp, int options)); 420 _GL_CXXALIASWARN (waitpid); 422 # undef waitpid 424 _GL_WARN_ON_USE (waitpid, "waitpid is unportable - "
|
/external/google-breakpad/src/client/mac/tests/ |
D | crash_generation_server_test.cc | 137 ASSERT_EQ(pid, waitpid(pid, &ret, 0)); in TEST_F() 195 ASSERT_EQ(pid, waitpid(pid, &ret, 0)); in TEST_F() 241 ASSERT_EQ(pid, waitpid(pid, &ret, 0)); in TEST_F() 305 ASSERT_EQ(pid, waitpid(pid, &ret, 0)); in TEST_F() 389 ASSERT_EQ(pid, waitpid(pid, &ret, 0)); in TEST_F()
|
D | exception_handler_test.cc | 168 ASSERT_EQ(pid, waitpid(pid, &ret, 0)); in InProcessCrash() 300 ASSERT_EQ(pid, waitpid(pid, &ret, 0)); in TEST_F() 363 ASSERT_EQ(pid, waitpid(pid, &ret, 0)); in TEST_F() 462 ASSERT_EQ(pid, waitpid(pid, &ret, 0)); in TEST_F() 561 ASSERT_EQ(pid, waitpid(pid, &ret, 0)); in TEST_F() 635 ASSERT_EQ(pid, waitpid(pid, &ret, 0)); in TEST_F() 696 ASSERT_EQ(pid, waitpid(pid, &ret, 0)); in TEST_F()
|
/external/strace/ |
D | README-linux-ptrace | 8 Ptrace API (ab)uses standard Unix parent/child signaling over waitpid. 40 about this event is delivered through waitpid API similarly to 81 that waitpid(WNOHANG) will reliably report tracee's death status if 82 ptrace operation returned ESRCH. waitpid(WNOHANG) may return 0 instead. 94 waitpid API. Tracer should use waitpid family of syscalls to wait for 97 pid = waitpid(pid_or_minus_1, &status, __WALL); 109 Setting of WCONTINUED bit in waitpid flags is not recommended: the 113 Use of WNOHANG bit in waitpid flags may cause waitpid return 0 ("no 115 notification. Example: kill(tracee, SIGKILL); waitpid(tracee, &status, 124 SYSEMU_SINGLESTEP]. They all are reported as waitpid result with [all …]
|
/external/valgrind/none/tests/ |
D | async-sigs.c | 53 ret = waitpid(killer, &status, 0); in do_kill() 114 if (waitpid(pid, &status, 0) != pid) { in test()
|
D | fork.c | 21 waitpid(pid, NULL, 0); in main()
|
D | threaded-fork.c | 41 while(waitpid(childpid, &status, 0) != childpid) { in main()
|
/external/fio/os/windows/posix/include/sys/ |
D | wait.h | 10 pid_t waitpid(pid_t, int *stat_loc, int options);
|
/external/compiler-rt/test/lsan/TestCases/ |
D | fork.cc | 19 waitpid(pid, &status, 0); in main()
|
D | fork_threaded.cc | 33 waitpid(pid, &status, 0); in main()
|
/external/openssh/openbsd-compat/ |
D | bsd-waitpid.c | 33 waitpid(int pid, int *stat_loc, int options) in waitpid() function
|
D | bsd-waitpid.h | 48 pid_t waitpid(int, int *, int);
|
/external/compiler-rt/test/tsan/ |
D | fork_atexit.cc | 27 if (waitpid(pid, 0, 0) == -1) { in main()
|
/external/valgrind/gdbserver_tests/ |
D | fork_chain.c | 25 while((ret = waitpid(pid, &status, 0)) != pid) { in fork_chain()
|
D | clean_after_fork.c | 26 while((ret = waitpid(pid, &status, 0)) != pid) { in main()
|
/external/google-breakpad/src/common/mac/ |
D | launch_reporter.cc | 69 pid_t result = waitpid(pid, &status, WNOHANG); in LaunchReporter()
|
/external/elfutils/src/tests/ |
D | backtrace.c | 270 pid_t got = waitpid (pid2, &status, __WALL); in prepare_thread() 338 pid_t got = waitpid (pid, &status, 0); in exec_dump() 348 pid_t pid2 = waitpid (-1, &status, __WALL); in exec_dump()
|
/external/libvncserver/x11vnc/ |
D | sslcmds.c | 77 waitpid(stunnel_pid, &status, WNOHANG); in check_stunnel() 81 waitpid(stunnel_pid, &status, WNOHANG); in check_stunnel() 349 waitpid(stunnel_pid, &status, WNOHANG); in start_stunnel() 363 waitpid(stunnel_pid, &status, WNOHANG); in start_stunnel() 388 waitpid(stunnel_pid, &status, WNOHANG); in stop_stunnel()
|
/external/valgrind/drd/tests/ |
D | threaded-fork.c | 43 while (waitpid(childpid, &status, 0) != childpid) { in main()
|
/external/compiler-rt/test/asan/TestCases/Posix/ |
D | wait.cc | 27 res = waitpid(pid, status, WNOHANG); in main()
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
D | signal_during_stop_the_world.cc | 47 waitpid(pid, 0, 0); in main()
|
D | clone_test.cc | 30 pid_t wait_result = waitpid(clone_pid, &status, __WCLONE); in main()
|