Searched refs:wait3 (Results 1 – 25 of 29) sorted by relevance
12
/external/compiler-rt/test/asan/TestCases/Posix/ |
D | wait3.cc | 20 res = wait3(status, WNOHANG, NULL); in main() 24 res = wait3(&good_status, WNOHANG, ru); in main()
|
/external/python/cpython2/Lib/test/ |
D | test_wait3.py | 16 os.wait3 25 spid, status, rusage = os.wait3(os.WNOHANG)
|
/external/python/cpython3/Lib/test/ |
D | test_wait3.py | 25 spid, status, rusage = os.wait3(os.WNOHANG)
|
/external/syslinux/core/ |
D | pxelinux.asm | 328 .wait3: call pollchar label 332 je .wait3
|
/external/tcpdump/lbl/ |
D | os-sunos4.h | 193 pid_t wait3(int *, int, struct rusage *);
|
/external/libpcap/lbl/ |
D | os-sunos4.h | 193 pid_t wait3(int *, int, struct rusage *);
|
/external/libvncserver/libvncclient/ |
D | listen.c | 91 while ((pid= wait3(&status, WNOHANG, (struct rusage *)0))>0); in listenForIncomingConnections()
|
/external/autotest/client/tests/rmaptest/src/ |
D | rmap-test.c | 249 pid = wait3(&status, 0, 0); in main()
|
/external/python/cpython3/Lib/test/eintrdata/ |
D | eintr_tester.py | 96 self._test_wait_multiple(lambda: os.wait3(0))
|
/external/honggfuzz/docs/ |
D | USAGE.md | 203 …* A: The ptrace() API is more flexible when it comes to analyzing a process' crash. wait3/4() sysc…
|
/external/valgrind/memcheck/tests/darwin/ |
D | scalar.stderr.exp | 562 (171): old wait3
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.5.rst | 1455 Two new functions, :func:`wait3` and :func:`wait4`, were added. They're similar 1457 a tuple of the process ID and its exit status, but :func:`wait3` and 1458 :func:`wait4` return additional information. :func:`wait3` doesn't take a
|
D | 3.5.rst | 525 :func:`~os.wait3`, :func:`~os.wait4`, :func:`~os.wait`,
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.5.rst | 1455 Two new functions, :func:`wait3` and :func:`wait4`, were added. They're similar 1457 a tuple of the process ID and its exit status, but :func:`wait3` and 1458 :func:`wait4` return additional information. :func:`wait3` doesn't take a
|
/external/python/cpython2/ |
D | pyconfig.h.in | 902 /* Define to 1 if you have the `wait3' function. */
|
D | configure.ac | 3106 truncate uname unsetenv utimes waitpid wait3 wait4 wcscoll _getpty)
|
D | configure | 10584 truncate uname unsetenv utimes waitpid wait3 wait4 wcscoll _getpty
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 1976 INTERCEPTOR(int, wait3, int *status, int options, void *rusage) { 1978 COMMON_INTERCEPTOR_ENTER(ctx, wait3, status, options, rusage); 1982 int res = REAL(wait3)(status, options, rusage); 2024 COMMON_INTERCEPT_FUNCTION(wait3);
|
/external/python/cpython3/ |
D | pyconfig.h.in | 1166 /* Define to 1 if you have the `wait3' function. */
|
D | configure.ac | 3414 truncate uname unlinkat unsetenv utimensat utimes waitid waitpid wait3 wait4 \
|
/external/compiler-rt/lib/dfsan/ |
D | libc_ubuntu1404_abilist.txt | 3228 fun:wait3=uninstrumented
|
/external/python/cpython2/Doc/library/ |
D | os.rst | 2238 .. function:: wait3(options)
|
/external/python/cpython2/Modules/ |
D | posixmodule.c | 6196 pid = wait3(&status, options, &ru); in posix_wait3()
|
/external/python/cpython3/Modules/ |
D | posixmodule.c | 6774 pid = wait3(&status, options, &ru); in os_wait3_impl()
|
/external/python/cpython3/Doc/library/ |
D | os.rst | 3546 .. function:: wait3(options)
|
12