Searched refs:WEXITSTATUS (Results 1 – 2 of 2) sorted by relevance
312 #ifndef WEXITSTATUS313 #define WEXITSTATUS(status) (((status)>>8)&0xFF) macro348 return WEXITSTATUS(status); in UNIXProcess_waitForProcessExit()
85 public static int WEXITSTATUS(int status) { return (status & 0xff00) >> 8; } in WEXITSTATUS() method in OsConstants100 public static int WSTOPSIG(int status) { return WEXITSTATUS(status); } in WSTOPSIG()