HomeSort by relevance Sort by last modified time
    Searched refs:waitpid (Results 1 - 25 of 278) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bison/lib/
waitpid.c 27 waitpid (pid_t pid, int *statusp, int options) function
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/lib/lsan/lit_tests/TestCases/
fork.cc 19 waitpid(pid, &status, 0);
fork_threaded.cc 33 waitpid(pid, &status, 0);
  /external/openssh/openbsd-compat/
bsd-waitpid.c 30 #include "bsd-waitpid.h"
33 waitpid(int pid, int *stat_loc, int options) function
bsd-waitpid.h 1 /* $Id: bsd-waitpid.h,v 1.5 2003/08/29 16:59:52 mouring Exp $ */
48 pid_t waitpid(int, int *, int);
  /external/valgrind/main/none/tests/
fork.c 21 waitpid(pid, NULL, 0);
syscall-restart1.c 59 waitpid(pid, NULL, 0);
syscall-restart2.c 58 waitpid(pid, NULL, 0);
threaded-fork.c 41 while(waitpid(childpid, &status, 0) != childpid) {
  /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");
  /system/netd/
ClatdController.cpp 79 waitpid(mClatdPid, NULL, 0);
92 waitpid_status = waitpid(mClatdPid, NULL, WNOHANG);
94 mClatdPid = 0; // child exited, don't call waitpid on it again
  /external/chromium_org/base/process/
kill_posix.cc 32 // waitpid() has no direct support on POSIX for specifying a timeout, you can
38 // Our strategy is to call waitpid() once up front to check if the process
41 // waitpid(). The amount of time we sleep starts out at 1 milliseconds, and
51 pid_t ret_pid = HANDLE_EINTR(waitpid(handle, &status, WNOHANG));
72 ret_pid = HANDLE_EINTR(waitpid(handle, &status, WNOHANG));
90 const pid_t result = HANDLE_EINTR(waitpid(handle, &status,
93 DPLOG(ERROR) << "waitpid(" << handle << ")";
154 pid_t pid = HANDLE_EINTR(waitpid(process_id, NULL, WNOHANG));
205 if (HANDLE_EINTR(waitpid(handle, &status, 0)) == -1) {
247 // TODO(port): use waitpid to avoid leaving zombies aroun
    [all...]
  /bionic/libc/bionic/
wait.cpp 42 pid_t waitpid(pid_t pid, int* status, int options) { function
  /bionic/libc/include/sys/
wait.h 49 extern pid_t waitpid(pid_t, int *, int);
  /development/ndk/platforms/android-3/include/sys/
wait.h 48 extern pid_t waitpid(pid_t, int *, int);
  /development/ndk/platforms/android-9/include/sys/
wait.h 49 extern pid_t waitpid(pid_t, int *, int);
  /external/chromium_org/third_party/mesa/src/scons/
fixes.py 21 pid, status = os.waitpid(ret, 0)
  /external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/
clone_test.cc 29 pid_t wait_result = waitpid(clone_pid, &status, __WCLONE);
31 perror("waitpid");
  /external/mesa3d/scons/
fixes.py 21 pid, status = os.waitpid(ret, 0)
  /external/qemu/distrib/sdl-1.2.15/src/thread/irix/
SDL_systhread.c 76 waitpid(thread->handle, NULL, 0);
  /external/valgrind/main/drd/tests/
threaded-fork.c 43 while (waitpid(childpid, &status, 0) != childpid) {
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/sys/
wait.h 48 extern pid_t waitpid(pid_t, int *, int);
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/sys/
wait.h 48 extern pid_t waitpid(pid_t, int *, int);

Completed in 1096 milliseconds

1 2 3 4 5 6 7 8 91011>>