/third_party/musl/porting/uniproton/kernel/include/sys/ |
H A D | wait.h | 33 pid_t wait4 (pid_t, int *, int, struct rusage *); 60 __REDIR(wait4, __wait4_time64);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
H A D | wait.h | 33 pid_t wait4 (pid_t, int *, int, struct rusage *); 60 __REDIR(wait4, __wait4_time64);
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
H A D | wait.h | 33 pid_t wait4 (pid_t, int *, int, struct rusage *); 60 __REDIR(wait4, __wait4_time64);
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
H A D | wait.h | 37 pid_t wait4 (pid_t, int *, int, struct rusage *); 64 __REDIR(wait4, __wait4_time64);
|
/third_party/musl/include/sys/ |
H A D | wait.h | 33 pid_t wait4 (pid_t, int *, int, struct rusage *); 60 __REDIR(wait4, __wait4_time64);
|
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
H A D | wait4.c | 31 * @tc.desc : Test the wait4 function to wait4 for the child process 41 pid_t wait4_for_pind = wait4(pid, &status, options, &ru); in wait4_0100() 43 t_error("%s wait4 get pid is %d are not want %d\n", __func__, wait4_for_pind, pid); in wait4_0100() 46 t_error("%s wait4 get status is %d are not 0\n", __func__, status); in wait4_0100() 52 t_error("%s wait4 fork error\n"); in wait4_0100() 58 * @tc.desc : Test the result of the wait4 function when the exit code of the child process is not 0 68 pid_t wait4_for_pind = wait4(pid, &status, options, &ru); in wait4_0200() 70 t_error("%s wait4 get pid is %d are not want %d\n", __func__, wait4_for_pind, pid); in wait4_0200() 73 t_error("%s wait4 ge in wait4_0200() [all...] |
/third_party/musl/src/linux/ |
H A D | wait3.c | 8 return wait4(-1, status, options, usage); in wait3()
|
H A D | wait4.c | 8 pid_t wait4(pid_t pid, int *status, int options, struct rusage *ru) in wait4() function
|
/third_party/ltp/testcases/kernel/syscalls/wait4/ |
H A D | wait403.c | 9 * Check wait4(INT_MIN, ...) is not allowed. The pid is negated before 31 TST_EXP_FAIL2(wait4(INT_MIN, &status, 0, &rusage), ESRCH, in run() 32 "wait4 fails with ESRCH"); in run()
|
H A D | wait401.c | 8 * wait401 - check that a call to wait4() correctly waits for a child 32 TST_EXP_PID_SILENT(wait4(pid, &status, 0, &rusage), "wait4()"); in run() 37 tst_res(TFAIL, "wait4() returned wrong pid %li, expected %i", in run() 40 tst_res(TPASS, "wait4() returned correct pid %i", pid); in run()
|
H A D | wait402.c | 65 TEST(wait4(epid, &status, 0, &rusage)); in main()
|
/third_party/musl/compat/time32/ |
H A D | wait4_time32.c | 29 int r = wait4(pid, status, options, usage ? &ru : 0); in __wait4_time32()
|
/third_party/python/Lib/test/ |
H A D | test_wait4.py | 1 """This test checks for correct wait4() behavior. 15 support.get_attribute(os, 'wait4') 22 # Issue #11185: wait4 is broken on AIX and will always return 0 27 # wait4() shouldn't hang, but some of the buildbots seem to hang 29 spid, status, rusage = os.wait4(cpid, option)
|
H A D | _test_eintr.py | 112 @unittest.skipUnless(hasattr(os, 'wait4'), 'requires wait4()') 114 self._test_wait_single(lambda pid: os.wait4(pid, 0))
|
/third_party/toybox/toys/posix/ |
H A D | time.c | 39 wait4(pid, &stat, 0, &ru); in time_main()
|
/third_party/musl/libc-test/src/common/ |
H A D | test.h | 95 #define __wait4_time64 wait4
|
/third_party/ltp/testcases/kernel/syscalls/prctl/ |
H A D | prctl04.c | 111 wait4(childpid, &childstatus, 0, NULL); in check_filter_mode_inherit()
|
/third_party/libwebsockets/lib/plat/unix/ |
H A D | unix-spawn.c | 167 n = wait4(lsp->child_pid, &status, WNOHANG, &rusa); in lws_spawn_reap() 232 n = wait4(lsp->child_pid, &status, WNOHANG, &rusa); in lws_spawn_reap()
|
/third_party/FreeBSD/lib/libc/include/ |
H A D | namespace.h | 238 #define wait4 _wait4
macro
|
/third_party/libunwind/libunwind/tests/ |
H A D | test-ptrace.c | 249 pid = wait4 (-1, &status, 0, NULL); in main() 255 panic ("wait4() failed (errno=%d)\n", errno); in main()
|
/third_party/rust/crates/libc/src/unix/bsd/ |
H A D | mod.rs | 835 link_name = "wait4$UNIX2003" 839 link_name = "wait4@FBSD_1.0" 841 pub fn wait4( in wait4() functions
|
/third_party/rust/crates/libc/src/unix/linux_like/ |
H A D | mod.rs | 1776 pub fn wait4( in wait4() functions
|
/third_party/rust/crates/libc/src/unix/nto/ |
H A D | mod.rs | 2708 pub fn wait4( in wait4() functions
|
/third_party/python/Modules/ |
H A D | posixmodule.c | 4678 /* sys/resource.h is needed for at least: wait3(), wait4(), broken nice. */ 8462 os.wait4 8485 res = wait4(pid, &status, options, &ru); in os_wait4_impl()
|