Home
last modified time | relevance | path

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

/external/strace/
Dstrace.c1702 #ifdef __WALL
1703 if (wait4(tcp->pid, &status, __WALL, NULL) < 0) {
1727 #ifdef __WALL
2409 #ifdef __WALL in trace()
2410 static int wait4_options = __WALL; in trace()
2420 #ifdef __WALL in trace()
2422 if (pid < 0 && (wait4_options & __WALL) && errno == EINVAL) { in trace()
2424 wait4_options &= ~__WALL; in trace()
2429 if (pid < 0 && !(wait4_options & __WALL) && errno == ECHILD) { in trace()
Dprocess.c1806 #ifndef __WALL
1807 #define __WALL 0x40000000 macro
1837 #ifdef __WALL
1838 { __WALL, "__WALL" },
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
/external/kernel-headers/original/linux/
Dwait.h12 #define __WALL 0x40000000 /* Wait on all children, regardless of type */ macro
/external/valgrind/main/coregrind/
Dvgdb.c467 p = waitpid(pid, &status, __WALL); in waitstopped()