Home
last modified time | relevance | path

Searched refs:__WALL (Results 1 – 22 of 22) sorted by relevance

/external/strace/xlat/
Dwait4_options.h7 #if !(defined(__WALL) || (defined(HAVE_DECL___WALL) && HAVE_DECL___WALL))
8 # define __WALL 0x40000000 macro
46 XLAT(__WALL),
Dwait4_options.in11 __WALL 0x40000000
/external/strace/tests/
Dwait4.c124 if (wait4(pid, s, WNOHANG|__WALL, NULL)) in main()
129 if (wait4(pid, s, WNOHANG|__WALL, rusage)) in main()
150 assert(do_wait4(pid, s, __WALL, rusage) == pid); in main()
194 assert(wait4(-1, s, WNOHANG|WSTOPPED|__WALL, rusage) == -1); in main()
/external/strace/tests-m32/
Dwait4.c124 if (wait4(pid, s, WNOHANG|__WALL, NULL)) in main()
129 if (wait4(pid, s, WNOHANG|__WALL, rusage)) in main()
150 assert(do_wait4(pid, s, __WALL, rusage) == pid); in main()
194 assert(wait4(-1, s, WNOHANG|WSTOPPED|__WALL, rusage) == -1); in main()
/external/strace/tests-mx32/
Dwait4.c124 if (wait4(pid, s, WNOHANG|__WALL, NULL)) in main()
129 if (wait4(pid, s, WNOHANG|__WALL, rusage)) in main()
150 assert(do_wait4(pid, s, __WALL, rusage) == pid); in main()
194 assert(wait4(-1, s, WNOHANG|WSTOPPED|__WALL, rusage) == -1); in main()
/external/linux-kselftest/tools/testing/selftests/breakpoints/
Dstep_after_suspend_test.c70 wpid = waitpid(pid, &status, __WALL); in run_test()
93 wpid = waitpid(pid, &status, __WALL); in run_test()
116 wpid = waitpid(pid, &status, __WALL); in run_test()
Dbreakpoint_test_arm64.c126 wpid = waitpid(pid, &status, __WALL); in run_test()
149 wpid = waitpid(pid, &status, __WALL); in run_test()
/external/kernel-headers/original/uapi/linux/
Dwait.h12 #define __WALL 0x40000000 /* Wait on all children, regardless of type */ macro
/external/ltp/testcases/kernel/security/tomoyo/
Dnewns.c46 while (waitpid(pid, NULL, __WALL) == EOF && errno == EINTR) in main()
Dtomoyo_filesystem_test.c578 while (waitpid(pid, &error, __WALL) == EOF && in main()
596 while (waitpid(pid, &error, __WALL) == EOF && in main()
613 while (waitpid(pid, &error, __WALL) == EOF && in main()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_stoptheworld_linux_libcdep.cc146 HANDLE_EINTR(waitpid_status, internal_waitpid(tid, &status, __WALL)); in SuspendThread()
439 uptr waitpid_status = internal_waitpid(tracer_pid, nullptr, __WALL); in StopTheWorld()
/external/compiler-rt/lib/esan/
Desan_sideline_linux.cpp138 uptr Status = internal_waitpid(SidelineId, nullptr, __WALL); in joinThread()
/external/elfutils/tests/
Dbacktrace.c276 pid_t got = waitpid (pid2, &status, __WALL); in prepare_thread()
354 pid_t pid2 = waitpid (-1, &status, __WALL); in exec_dump()
/external/linux-kselftest/tools/testing/selftests/x86/
Dtest_syscall_vdso.c360 pid = waitpid(-1, &status, __WALL); in ptrace_me()
/external/google-breakpad/src/client/linux/minidump_writer/
Dlinux_ptrace_dumper.cc70 while (sys_waitpid(pid, NULL, __WALL) < 0) { in SuspendThread()
/external/elfutils/libdwfl/
Dlinux-pid-attach.c94 if (waitpid (tid, &status, __WALL) != tid || !WIFSTOPPED (status)) in __libdwfl_ptrace_attach()
/external/strace/
DREADME-linux-ptrace97 pid = waitpid(pid_or_minus_1, &status, __WALL);
102 ??? Do we require __WALL usage, or will just using 0 be ok? Are the
106 __WALL value does not include WSTOPPED and WEXITED bits, but implies
116 __WALL | WNOHANG);
Dstrace.c944 if (waitpid(tcp->pid, &status, __WALL) < 0) { in detach()
2345 pid = wait4(-1, pstatus, __WALL, (cflag ? &ru : NULL)); in next_event()
DChangeLog-CVS3879 * strace.c (detach) [LINUX]: Use __WALL (or a second try with __WCLONE)
3888 __WNOTHREAD and __WALL.
4418 * strace.c: use __WALL as wait4 flag if it exists so we can properly
DChangeLog30400 Remove workarounds for ancient kernels lacking __WALL.
30401 __WALL is available and working at least since 2.4 kernels: 10 years ago.
30403 * strace (detach): Remove workarounds for ancient kernels lacking __WALL.
30405 (trace): Remove workarounds for ancient kernels lacking __WALL.
/external/google-breakpad/src/client/linux/handler/
Dexception_handler.cc520 const int r = HANDLE_EINTR(sys_waitpid(child, &status, __WALL)); in GenerateDump()
/external/valgrind/coregrind/
Dvgdb-invoker-ptrace.c263 p = waitpid(pid, &status, __WALL); in waitstopped()