Home
last modified time | relevance | path

Searched refs:WEXITSTATUS (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/native/
DUNIXProcess_md.c307 #ifndef WEXITSTATUS
308 #define WEXITSTATUS(status) (((status)>>8)&0xFF) macro
343 return WEXITSTATUS(status); in UNIXProcess_waitForProcessExit()
/libcore/luni/src/main/java/android/system/
DOsConstants.java78 public static int WEXITSTATUS(int status) { return (status & 0xff00) >> 8; } in WEXITSTATUS() method in OsConstants
93 public static int WSTOPSIG(int status) { return WEXITSTATUS(status); } in WSTOPSIG()