Home
last modified time | relevance | path

Searched refs:waitpid (Results 1 – 25 of 165) sorted by relevance

1234567

/external/bison/lib/
Dsys_wait.in.h115 _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 - "
Dwaitpid.c27 waitpid (pid_t pid, int *statusp, int options) in waitpid() function
/external/chromium_org/base/process/
Dkill_posix.cc53 return HANDLE_EINTR(waitpid(handle, status, 0)) > 0; in WaitpidWithTimeout()
56 pid_t ret_pid = HANDLE_EINTR(waitpid(handle, status, WNOHANG)); in WaitpidWithTimeout()
76 ret_pid = HANDLE_EINTR(waitpid(handle, status, WNOHANG)); in WaitpidWithTimeout()
91 const pid_t result = HANDLE_EINTR(waitpid(handle, &status, in GetTerminationStatusImpl()
155 pid_t pid = HANDLE_EINTR(waitpid(process_id, NULL, WNOHANG)); in KillProcess()
211 if (HANDLE_EINTR(waitpid(handle, &status, 0)) == -1) { in WaitForExitCode()
391 const pid_t result = HANDLE_EINTR(waitpid(child, NULL, WNOHANG)); in IsChildDead()
421 pid_t r = HANDLE_EINTR(waitpid(child_, NULL, 0)); in WaitForChildToDie()
442 if (HANDLE_EINTR(waitpid(child_, NULL, 0)) < 0) in WaitForChildToDie()
Dkill_mac.cc25 const pid_t result = HANDLE_EINTR(waitpid(child, NULL, 0)); in BlockingReap()
99 result = HANDLE_EINTR(waitpid(child, NULL, WNOHANG)); in WaitForChildToDie()
/external/bison/darwin-lib/sys/
Dwait.h417 _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/
Dwait.h417 _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/strace/
DREADME-linux-ptrace8 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/main/none/tests/
Dasync-sigs.c53 ret = waitpid(killer, &status, 0); in do_kill()
114 if (waitpid(pid, &status, 0) != pid) { in test()
Dfork.c21 waitpid(pid, NULL, 0); in main()
Dthreaded-fork.c41 while(waitpid(childpid, &status, 0) != childpid) { in main()
Dsyscall-restart2.c58 waitpid(pid, NULL, 0); in main()
/external/fio/os/windows/posix/include/sys/
Dwait.h10 pid_t waitpid(pid_t, int *stat_loc, int options);
/external/compiler-rt/test/lsan/TestCases/
Dfork.cc19 waitpid(pid, &status, 0); in main()
Dfork_threaded.cc33 waitpid(pid, &status, 0); in main()
/external/compiler-rt/test/tsan/
Dfork_atexit.cc27 if (waitpid(pid, 0, 0) == -1) { in main()
/external/valgrind/main/gdbserver_tests/
Dfork_chain.c25 while((ret = waitpid(pid, &status, 0)) != pid) { in fork_chain()
Dclean_after_fork.c26 while((ret = waitpid(pid, &status, 0)) != pid) { in main()
/external/valgrind/main/drd/tests/
Dthreaded-fork.c43 while (waitpid(childpid, &status, 0) != childpid) { in main()
/external/strace/test/
Dchildthread.c50 got_pid = waitpid(-1, &status, 0); in main()
Dleaderkill.c54 got_pid = waitpid(child, &status, 0); in main()
/external/mesa3d/scons/
Dfixes.py21 pid, status = os.waitpid(ret, 0)
/external/chromium_org/third_party/mesa/src/scons/
Dfixes.py21 pid, status = os.waitpid(ret, 0)
/external/compiler-rt/test/asan/TestCases/Linux/
Dclone_test.cc30 pid_t wait_result = waitpid(clone_pid, &status, __WCLONE); in main()
/external/bison/m4/
Dwaitpid.m41 # waitpid.m4 serial 2
/external/compiler-rt/test/asan/TestCases/Posix/
Dwait.cc32 res = waitpid(pid, status, WNOHANG); in main()

1234567