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

/external/llvm/lib/Support/Unix/
H A DUnix.h60 #ifndef WIFEXITED
61 # define WIFEXITED(stat_val) (((stat_val) & 255) == 0) macro
/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/lib/
H A Dsubpipe.c57 #ifndef WIFEXITED
58 # define WIFEXITED(stat_val) (((stat_val) & 255) == 0) macro
167 int status = WIFEXITED (wstatus) ? WEXITSTATUS (wstatus) : -1;
/external/icu4c/tools/tzcode/
H A Dprivate.h97 #include <sys/wait.h> /* for WIFEXITED and WEXITSTATUS */
100 #ifndef WIFEXITED
101 #define WIFEXITED(status) (((status) & 0xff) == 0) macro
102 #endif /* !defined WIFEXITED */
/external/ipsec-tools/src/racoon/
H A Dsession.c46 #ifndef WIFEXITED
47 # define WIFEXITED(s) (((s) & 255) == 0) macro
/external/okhttp/src/main/java/libcore/io/
H A DOsConstants.java34 public static boolean WIFEXITED(int status) { return (WTERMSIG(status) == 0); } method in class:OsConstants

Completed in 1988 milliseconds