Searched defs:WIFEXITED (Results 1 - 8 of 8) sorted by relevance

/external/fio/os/windows/posix/include/sys/
H A Dwait.h5 #define WIFEXITED(a) 0 macro
/external/llvm/lib/Support/Unix/
H A DUnix.h58 #ifndef WIFEXITED
59 # define WIFEXITED(stat_val) (((stat_val) & 255) == 0) macro
/external/bison/lib/
H A Dsys_wait.in.h51 /* For valid x, exactly one of WIFSIGNALED(x), WIFEXITED(x), WIFSTOPPED(x)
56 # ifndef WIFEXITED
57 # define WIFEXITED(x) (WTERMSIG (x) == 0) macro
68 /* The exit status. Only to be accessed if WIFEXITED(x) is true. */
94 # define WIFEXITED(x) ((x) != 3)
/external/openssh/openbsd-compat/
H A Dbsd-waitpid.h33 #undef WIFEXITED macro
39 #define WIFEXITED(w) (!((_W_INT(w)) & 0377)) macro
41 #define WIFSIGNALED(w) (!WIFEXITED(w) && !WIFSTOPPED(w))
42 #define WEXITSTATUS(w) (int)(WIFEXITED(w) ? ((_W_INT(w) >> 8) & 0377) : -1)
/external/bison/darwin-lib/sys/
H A Dwait.h353 /* For valid x, exactly one of WIFSIGNALED(x), WIFEXITED(x), WIFSTOPPED(x)
358 # ifndef WIFEXITED
359 # define WIFEXITED(x) (WTERMSIG (x) == 0) macro
370 /* The exit status. Only to be accessed if WIFEXITED(x) is true. */
396 # define WIFEXITED(x) ((x) != 3) macro
/external/bison/linux-lib/sys/
H A Dwait.h353 /* For valid x, exactly one of WIFSIGNALED(x), WIFEXITED(x), WIFSTOPPED(x)
358 # ifndef WIFEXITED
359 # define WIFEXITED(x) (WTERMSIG (x) == 0) macro
370 /* The exit status. Only to be accessed if WIFEXITED(x) is true. */
396 # define WIFEXITED(x) ((x) != 3) macro
/external/ipsec-tools/src/racoon/
H A Dsession.c46 #ifndef WIFEXITED
47 # define WIFEXITED(s) (((s) & 255) == 0) macro
/external/icu/icu4c/source/tools/tzcode/
H A Dprivate.h91 #include <sys/wait.h> /* for WIFEXITED and WEXITSTATUS */
94 #ifndef WIFEXITED
95 #define WIFEXITED(status) (((status) & 0xff) == 0) macro
96 #endif /* !defined WIFEXITED */

Completed in 323 milliseconds