/external/fio/os/windows/posix/include/sys/ |
wait.h | 10 pid_t waitpid(pid_t, int *stat_loc, int options);
|
/external/valgrind/main/gdbserver_tests/ |
fork_chain.c | 25 while((ret = waitpid(pid, &status, 0)) != pid) { 27 perror("waitpid");
|
clean_after_fork.c | 26 while((ret = waitpid(pid, &status, 0)) != pid) { 28 perror("waitpid");
|
/external/bison/lib/ |
sys_wait.in.h | 46 as returned by waitpid(). 89 as returned by waitpid() or, equivalently, _cwait() or GetExitCodeProcess(). 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); variable 120 # undef waitpid 122 _GL_WARN_ON_USE (waitpid, "waitpid is unportable - "
|
/external/compiler-rt/test/tsan/ |
fork_atexit.cc | 27 if (waitpid(pid, 0, 0) == -1) { 28 perror("waitpid");
|
/external/bison/m4/ |
waitpid.m4 | 0 # waitpid.m4 serial 2
|
/external/chromium_org/third_party/mesa/src/scons/ |
fixes.py | 21 pid, status = os.waitpid(ret, 0)
|
/external/compiler-rt/test/lsan/TestCases/ |
fork.cc | 19 waitpid(pid, &status, 0);
|
/external/mesa3d/scons/ |
fixes.py | 21 pid, status = os.waitpid(ret, 0)
|
/external/valgrind/main/none/tests/ |
fork.c | 21 waitpid(pid, NULL, 0);
|
async-sigs.c | 53 ret = waitpid(killer, &status, 0); 57 perror("kill/waitpid"); 114 if (waitpid(pid, &status, 0) != pid) { 115 fprintf(stderr, "FAILED: waitpid failed: %s\n", strerror(errno));
|
threaded-fork.c | 41 while(waitpid(childpid, &status, 0) != childpid) {
|
exec-sigmask.c | 29 ret = waitpid(pid, &status, 0); 32 perror("waitpid");
|
/external/strace/test/ |
childthread.c | 47 /* We must not be waiting in WAITPID when the child double-exits. */ 50 got_pid = waitpid(-1, &status, 0);
|
/external/chromium_org/base/process/ |
kill_posix.cc | 33 // waitpid() has no direct support on POSIX for specifying a timeout, you can 39 // Our strategy is to call waitpid() once up front to check if the process 42 // waitpid(). The amount of time we sleep starts out at 1 milliseconds, and 53 return HANDLE_EINTR(waitpid(handle, status, 0)) > 0; 56 pid_t ret_pid = HANDLE_EINTR(waitpid(handle, status, WNOHANG)); 76 ret_pid = HANDLE_EINTR(waitpid(handle, status, WNOHANG)); 91 const pid_t result = HANDLE_EINTR(waitpid(handle, &status, 94 DPLOG(ERROR) << "waitpid(" << handle << ")"; 155 pid_t pid = HANDLE_EINTR(waitpid(process_id, NULL, WNOHANG)); 211 if (HANDLE_EINTR(waitpid(handle, &status, 0)) == -1) [all...] |
kill_mac.cc | 25 const pid_t result = HANDLE_EINTR(waitpid(child, NULL, 0)); 27 DPLOG(ERROR) << "waitpid(" << child << ", NULL, 0)"; 37 // time. Once the kqueue indicates the process has exited, waitpid will reap 48 // zombie that a non-blocking (WNOHANG) waitpid can reap. This condition is 50 // non-blocking waitpid fails to reap the process but indicates that it is 66 // work in that case, but waitpid won't, and killing a non-child might not be 99 result = HANDLE_EINTR(waitpid(child, NULL, WNOHANG)); 102 // A positive result indicates case 1. waitpid succeeded and reaped
|
/external/valgrind/main/drd/tests/ |
threaded-fork.c | 43 while (waitpid(childpid, &status, 0) != childpid) {
|
/ndk/tests/device/test-wait/jni/ |
test_wait.c | 79 // To be called by check_wait_call() to check waitpid() 82 pid_t ret = waitpid((pid_t)-1, &status, 0); 84 fprintf(stderr, "ERROR: waitpid() returned %d, expected %d\n", ret, child_pid); 117 check_wait_call("waitpid", check_waitpid, CHILD_EXIT_CODE + 1) < 0 ||
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/subprocessdata/ |
sigchild_ignore.py | 2 # On Linux this causes os.waitpid to fail with OSError as the OS has already
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/subprocessdata/ |
sigchild_ignore.py | 2 # On Linux this causes os.waitpid to fail with OSError as the OS has already
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
clone_test.cc | 30 pid_t wait_result = waitpid(clone_pid, &status, __WCLONE); 32 perror("waitpid");
|
/external/qemu/distrib/ext4_utils/src/ |
setup_fs.c | 56 while ((pid=waitpid(-1, &status, 0)) != child) { 58 fprintf(stderr, "error: setup_fs: waitpid failed!\n");
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/ |
waitflags.h | 1 /* Definitions of flag bits for `waitpid' et al. 25 /* Bits in the third argument to `waitpid'. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/ |
waitflags.h | 1 /* Definitions of flag bits for `waitpid' et al. 25 /* Bits in the third argument to `waitpid'. */
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_fork1.py | 21 # waitpid() shouldn't hang, but some of the buildbots seem to hang 23 spid, status = os.waitpid(cpid, os.WNOHANG)
|