Searched refs:WIFSTOPPED (Results 1 - 25 of 36) sorted by relevance

12

/external/openssh/openbsd-compat/
H A Dbsd-waitpid.h34 #undef WIFSTOPPED macro
40 #define WIFSTOPPED(w) ((_W_INT(w)) & 0100) macro
41 #define WIFSIGNALED(w) (!WIFEXITED(w) && !WIFSTOPPED(w))
/external/bison/lib/
H A Dsys_wait.in.h51 /* For valid x, exactly one of WIFSIGNALED(x), WIFEXITED(x), WIFSTOPPED(x)
59 # ifndef WIFSTOPPED
60 # define WIFSTOPPED(x) (WTERMSIG (x) == 0x7f) macro
73 /* The stopping signal. Only to be accessed if WIFSTOPPED(x) is true. */
95 # define WIFSTOPPED(x) 0
H A Dwait-process.c321 /* One of WIFSIGNALED (status), WIFEXITED (status), WIFSTOPPED (status)
324 if (!WIFSTOPPED (status))
/external/ltrace/sysdeps/linux-gnu/m68k/
H A Dtrace.c54 if (WIFSTOPPED(status)
/external/ltrace/sysdeps/linux-gnu/aarch64/
H A Dtrace.c48 if (WIFSTOPPED(status)
/external/ltrace/sysdeps/linux-gnu/alpha/
H A Dtrace.c52 if (WIFSTOPPED(status)
/external/ltrace/sysdeps/linux-gnu/cris/
H A Dtrace.c52 if (WIFSTOPPED(status)
/external/ltrace/sysdeps/linux-gnu/ia64/
H A Dtrace.c75 if (WIFSTOPPED(status)
/external/ltrace/sysdeps/linux-gnu/sparc/
H A Dtrace.c49 if (WIFSTOPPED(status)
/external/bison/darwin-lib/sys/
H A Dwait.h353 /* For valid x, exactly one of WIFSIGNALED(x), WIFEXITED(x), WIFSTOPPED(x)
361 # ifndef WIFSTOPPED
362 # define WIFSTOPPED(x) (WTERMSIG (x) == 0x7f) macro
375 /* The stopping signal. Only to be accessed if WIFSTOPPED(x) is true. */
397 # define WIFSTOPPED(x) 0 macro
/external/bison/linux-lib/sys/
H A Dwait.h353 /* For valid x, exactly one of WIFSIGNALED(x), WIFEXITED(x), WIFSTOPPED(x)
361 # ifndef WIFSTOPPED
362 # define WIFSTOPPED(x) (WTERMSIG (x) == 0x7f) macro
375 /* The stopping signal. Only to be accessed if WIFSTOPPED(x) is true. */
397 # define WIFSTOPPED(x) 0 macro
/external/ltrace/sysdeps/linux-gnu/
H A Devents.c280 if (WIFSTOPPED(status)) {
295 if (WIFSTOPPED(status) && (status>>16 == PTRACE_EVENT_EXEC)) {
300 if (!WIFSTOPPED(status)) {
/external/elfutils/src/tests/
H A Dbacktrace-dwarf.c154 assert (WIFSTOPPED (status));
H A Dbacktrace.c273 assert (WIFSTOPPED (status));
341 assert (WIFSTOPPED (status));
352 assert (WIFSTOPPED (status));
H A Dbacktrace-data.c290 assert (WIFSTOPPED (status));
/external/ltrace/sysdeps/linux-gnu/x86/
H A Dtrace.c80 if (WIFSTOPPED(status)
/external/strace/
H A Dwait.c49 if (WIFSTOPPED(status)) {
51 tprintf("[{WIFSTOPPED(s) && WSTOPSIG(s) == %s%s}",
H A Dstrace.c849 if (!WIFSTOPPED(status)) {
1272 if (!WIFSTOPPED(status) || WSTOPSIG(status) != SIGSTOP) {
1840 if (WIFSTOPPED(status))
1841 sprintf(buf, "WIFSTOPPED,sig=%s", signame(WSTOPSIG(status)));
1871 if (!WIFSTOPPED(status)) {
2089 if (!WIFSTOPPED(status))
2106 if (WIFSTOPPED(status))
2159 if (!WIFSTOPPED(status)) {
/external/ltrace/sysdeps/linux-gnu/ppc/
H A Dtrace.c65 if (WIFSTOPPED(status)
/external/ltrace/sysdeps/linux-gnu/s390/
H A Dtrace.c78 if (WIFSTOPPED(status)
/external/libunwind/tests/
H A Dtest-ptrace.c250 || (WIFSTOPPED (status) && WSTOPSIG (status) != SIGTRAP))
/external/ltrace/sysdeps/linux-gnu/mips/
H A Dtrace.c92 if (WIFSTOPPED(status)
/external/openssh/
H A Dsandbox-systrace.c129 if (!WIFSTOPPED(status)) {
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_linux_libcdep.cc145 if (WIFSTOPPED(status) && WSTOPSIG(status) != SIGSTOP) {
/external/elfutils/src/libdwfl/
H A Dlinux-pid-attach.c90 if (waitpid (tid, &status, __WALL) != tid || !WIFSTOPPED (status))

Completed in 1836 milliseconds

12