Home
last modified time | relevance | path

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

12345678

/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/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/google-breakpad/src/client/mac/tests/
Dcrash_generation_server_test.cc137 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()
Dexception_handler_test.cc168 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/
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/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()
/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/openssh/openbsd-compat/
Dbsd-waitpid.c33 waitpid(int pid, int *stat_loc, int options) in waitpid() function
Dbsd-waitpid.h48 pid_t waitpid(int, int *, int);
/external/compiler-rt/test/tsan/
Dfork_atexit.cc27 if (waitpid(pid, 0, 0) == -1) { in main()
/external/valgrind/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/google-breakpad/src/common/mac/
Dlaunch_reporter.cc69 pid_t result = waitpid(pid, &status, WNOHANG); in LaunchReporter()
/external/elfutils/src/tests/
Dbacktrace.c270 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/
Dsslcmds.c77 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/
Dthreaded-fork.c43 while (waitpid(childpid, &status, 0) != childpid) { in main()
/external/compiler-rt/test/asan/TestCases/Posix/
Dwait.cc27 res = waitpid(pid, status, WNOHANG); in main()
/external/compiler-rt/test/asan/TestCases/Linux/
Dsignal_during_stop_the_world.cc47 waitpid(pid, 0, 0); in main()
Dclone_test.cc30 pid_t wait_result = waitpid(clone_pid, &status, __WCLONE); in main()

12345678