Home
last modified time | relevance | path

Searched refs:wait4 (Results 1 - 24 of 24) sorted by relevance

/third_party/musl/porting/uniproton/kernel/include/sys/
H A Dwait.h33 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 Dwait.h33 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 Dwait.h33 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 Dwait.h37 pid_t wait4 (pid_t, int *, int, struct rusage *);
64 __REDIR(wait4, __wait4_time64);
/third_party/musl/include/sys/
H A Dwait.h33 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 Dwait4.c31 * @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 Dwait3.c8 return wait4(-1, status, options, usage); in wait3()
H A Dwait4.c8 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 Dwait403.c9 * 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 Dwait401.c8 * 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 Dwait402.c65 TEST(wait4(epid, &status, 0, &rusage)); in main()
/third_party/musl/compat/time32/
H A Dwait4_time32.c29 int r = wait4(pid, status, options, usage ? &ru : 0); in __wait4_time32()
/third_party/python/Lib/test/
H A Dtest_wait4.py1 """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.py112 @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 Dtime.c39 wait4(pid, &stat, 0, &ru); in time_main()
/third_party/musl/libc-test/src/common/
H A Dtest.h95 #define __wait4_time64 wait4
/third_party/ltp/testcases/kernel/syscalls/prctl/
H A Dprctl04.c111 wait4(childpid, &childstatus, 0, NULL); in check_filter_mode_inherit()
/third_party/libwebsockets/lib/plat/unix/
H A Dunix-spawn.c167 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 Dnamespace.h238 #define wait4 _wait4 macro
/third_party/libunwind/libunwind/tests/
H A Dtest-ptrace.c249 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 Dmod.rs835 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 Dmod.rs1776 pub fn wait4( in wait4() functions
/third_party/rust/crates/libc/src/unix/nto/
H A Dmod.rs2708 pub fn wait4( in wait4() functions
/third_party/python/Modules/
H A Dposixmodule.c4678 /* 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()

Completed in 34 milliseconds