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

1 2 3 4 5 6 7 8 91011>>

  /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/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");
syscall-restart1.c 59 waitpid(pid, NULL, 0);
syscall-restart2.c 58 waitpid(pid, NULL, 0);
  /system/core/debuggerd/
utility.c 56 pid_t n = waitpid(tid, &status, __WALL | WNOHANG);
59 LOG("waitpid failed: %s\n", strerror(errno));
62 XLOG("waitpid: n=%d status=%08x\n", n, status);
66 LOG("unexpected waitpid response: n=%d, status=%08x\n", n, status);
  /system/extras/tests/bionic/libc/common/
test_clone.c 75 child = waitpid (pid, &status, 0);
76 printf("waitpid returned %d\n", child);
78 perror ("waitpid");
  /external/bison/m4/
subpipe.m4 27 AC_CHECK_FUNCS(dup2 waitpid)
  /external/valgrind/main/drd/tests/
threaded-fork.c 43 while (waitpid(childpid, &status, 0) != childpid) {
  /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);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/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/i686-linux-glibc2.7-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.7-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'. */
  /system/extras/ext4_utils/
setup_fs.c 56 while ((pid=waitpid(-1, &status, 0)) != child) {
58 fprintf(stderr, "error: setup_fs: waitpid failed!\n");
  /development/tools/emulator/opengl/shared/OpenglOsUtils/
osProcessUnix.cpp 154 pid_t pid = waitpid(m_pid,&ret,0);
172 pid_t pid = waitpid(m_pid,&ret,WNOHANG);
197 if (waitpid(pid,NULL,0)<0) {
  /sdk/emulator/opengl/shared/OpenglOsUtils/
osProcessUnix.cpp 154 pid_t pid = waitpid(m_pid,&ret,0);
172 pid_t pid = waitpid(m_pid,&ret,WNOHANG);
197 if (waitpid(pid,NULL,0)<0) {
  /external/chromium/chrome/browser/cocoa/
authorization_util.h 54 // waitpid() to wait for the process to exit. If waitpid() succeeds, the
  /external/compiler-rt/lib/asan/lit_tests/Linux/
clone_test.cc 33 pid_t wait_result = waitpid(clone_pid, &status, __WCLONE);
35 perror("waitpid");
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
wait.h 37 bits to `waitpid', `wait3', and `wait4'. */
119 /* Special values for the PID argument to `waitpid' and `wait4'. */
139 extern __pid_t waitpid (__pid_t __pid, int *__stat_loc, int __options);
174 /* PID is like waitpid. Other args are like wait3. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
wait.h 37 bits to `waitpid', `wait3', and `wait4'. */
119 /* Special values for the PID argument to `waitpid' and `wait4'. */
139 extern __pid_t waitpid (__pid_t __pid, int *__stat_loc, int __options);
174 /* PID is like waitpid. Other args are like wait3. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
wait.h 37 bits to `waitpid', `wait3', and `wait4'. */
119 /* Special values for the PID argument to `waitpid' and `wait4'. */
139 extern __pid_t waitpid (__pid_t __pid, int *__stat_loc, int __options);
174 /* PID is like waitpid. Other args are like wait3. */

Completed in 1774 milliseconds

1 2 3 4 5 6 7 8 91011>>