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

1 2 3 4 5

  /external/strace/tests/
wait4-v.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (wait4-v -v -e signal=none -e trace=wait4); do not edit.
4 run_strace_match_diff -v -e signal=none -e trace=wait4
wait4.c 2 * Check decoding of wait4 syscall.
95 pid_t rc = wait4(pid, wstatus, options, ru);
124 if (wait4(pid, s, WNOHANG|__WALL, NULL))
125 perror_msg_and_fail("wait4 #1");
126 tprintf("wait4(%d, %p, WNOHANG|__WALL, NULL) = 0\n", pid, s);
129 if (wait4(pid, s, WNOHANG|__WALL, rusage))
130 perror_msg_and_fail("wait4 #2");
131 tprintf("wait4(%d, %p, WNOHANG|__WALL, %p) = 0\n", pid, s, rusage);
138 tprintf("wait4(%d, [{WIFEXITED(s) && WEXITSTATUS(s) == 42}], 0, %s)"
152 tprintf("wait4(%d, [{WIFSIGNALED(s) && WTERMSIG(s) == SIGUSR1}]
    [all...]
  /external/strace/tests-m32/
wait4-v.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (wait4-v -v -e signal=none -e trace=wait4); do not edit.
4 run_strace_match_diff -v -e signal=none -e trace=wait4
wait4.c 2 * Check decoding of wait4 syscall.
95 pid_t rc = wait4(pid, wstatus, options, ru);
124 if (wait4(pid, s, WNOHANG|__WALL, NULL))
125 perror_msg_and_fail("wait4 #1");
126 tprintf("wait4(%d, %p, WNOHANG|__WALL, NULL) = 0\n", pid, s);
129 if (wait4(pid, s, WNOHANG|__WALL, rusage))
130 perror_msg_and_fail("wait4 #2");
131 tprintf("wait4(%d, %p, WNOHANG|__WALL, %p) = 0\n", pid, s, rusage);
138 tprintf("wait4(%d, [{WIFEXITED(s) && WEXITSTATUS(s) == 42}], 0, %s)"
152 tprintf("wait4(%d, [{WIFSIGNALED(s) && WTERMSIG(s) == SIGUSR1}]
    [all...]
  /external/strace/tests-mx32/
wait4-v.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (wait4-v -v -e signal=none -e trace=wait4); do not edit.
4 run_strace_match_diff -v -e signal=none -e trace=wait4
wait4.c 2 * Check decoding of wait4 syscall.
95 pid_t rc = wait4(pid, wstatus, options, ru);
124 if (wait4(pid, s, WNOHANG|__WALL, NULL))
125 perror_msg_and_fail("wait4 #1");
126 tprintf("wait4(%d, %p, WNOHANG|__WALL, NULL) = 0\n", pid, s);
129 if (wait4(pid, s, WNOHANG|__WALL, rusage))
130 perror_msg_and_fail("wait4 #2");
131 tprintf("wait4(%d, %p, WNOHANG|__WALL, %p) = 0\n", pid, s, rusage);
138 tprintf("wait4(%d, [{WIFEXITED(s) && WEXITSTATUS(s) == 42}], 0, %s)"
152 tprintf("wait4(%d, [{WIFSIGNALED(s) && WTERMSIG(s) == SIGUSR1}]
    [all...]
  /bionic/libc/arch-arm/syscalls/
wait4.S 5 ENTRY(wait4) function
16 END(wait4)
  /bionic/libc/arch-arm64/syscalls/
wait4.S 5 ENTRY(wait4) function
14 END(wait4)
  /bionic/libc/arch-mips/syscalls/
wait4.S 5 ENTRY(wait4) function
19 END(wait4)
  /bionic/libc/arch-x86_64/syscalls/
wait4.S 5 ENTRY(wait4) function
16 END(wait4)
  /bionic/libc/arch-mips64/syscalls/
wait4.S 5 ENTRY(wait4) function
25 END(wait4)
  /bionic/libc/bionic/
wait.cpp 35 return wait4(-1, status, 0, nullptr);
39 return wait4(pid, status, options, nullptr);
  /external/compiler-rt/test/asan/TestCases/Posix/
wait4.cc 26 #if defined(WAIT4)
27 res = wait4(pid, status, WNOHANG, NULL);
31 res = wait4(pid, &good_status, WNOHANG, ru);
36 // CHECK: {{in main .*wait4.cc:}}
  /external/openssh/openbsd-compat/
bsd-waitpid.c 43 /* wait4() wants pid=0 for indiscriminate wait. */
46 wait_pid = wait4(pid, &statusp, options, NULL);
  /bionic/libc/arch-x86/syscalls/
wait4.S 5 ENTRY(wait4) function
44 END(wait4)
  /bionic/libc/include/android/
legacy_sys_wait_inlines.h 42 static __inline pid_t wait4(pid_t pid, int* status, int options, struct rusage* rusage) { function
  /bionic/libc/include/sys/
wait.h 44 pid_t wait4(pid_t __pid, int* __status, int __options, struct rusage* __rusage) __INTRODUCED_IN(18);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_wait4.py 1 """This test checks for correct wait4() behavior.
11 get_attribute(os, 'wait4')
17 # wait4() shouldn't hang, but some of the buildbots seem to hang
19 spid, status, rusage = os.wait4(cpid, os.WNOHANG)
  /external/ltp/testcases/kernel/syscalls/wait4/
wait401.c 21 * wait401 - check that a call to wait4() correctly waits for a child
45 TEST(wait4(pid, &status, 0, &rusage));
47 tst_res(TFAIL | TERRNO, "wait4() failed");
wait402.c 65 TEST(wait4(epid, &status, 0, &rusage));
  /external/python/cpython2/Lib/test/
test_wait4.py 1 """This test checks for correct wait4() behavior.
12 get_attribute(os, 'wait4')
19 # Issue #11185: wait4 is broken on AIX and will always return 0
23 # wait4() shouldn't hang, but some of the buildbots seem to hang
25 spid, status, rusage = os.wait4(cpid, option)
  /external/python/cpython3/Lib/test/
test_wait4.py 1 """This test checks for correct wait4() behavior.
13 get_attribute(os, 'wait4')
20 # Issue #11185: wait4 is broken on AIX and will always return 0
25 # wait4() shouldn't hang, but some of the buildbots seem to hang
27 spid, status, rusage = os.wait4(cpid, option)
  /external/toybox/toys/posix/
time.c 39 wait4(pid, &stat, 0, &ru);
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
wait.h 40 * This file holds definitions relevent to the wait4 system call
65 * Option bits for the third argument of wait4. WNOHANG causes the
102 * Tokens for special values of the "pid" parameter to wait4.
109 * Structure of the information in the status word returned by wait4.
166 pid_t wait4(pid_t, int *, int, struct rusage *);
  /external/ltp/testcases/kernel/io/ltp-aiodio/
ltp-diorh.c 156 wait4(pid, NULL, WNOHANG, 0);

Completed in 1395 milliseconds

1 2 3 4 5