Searched refs:WEXITSTATUS (Results 1 – 2 of 2) sorted by relevance
307 #ifndef WEXITSTATUS308 #define WEXITSTATUS(status) (((status)>>8)&0xFF) macro343 return WEXITSTATUS(status); in UNIXProcess_waitForProcessExit()
78 public static int WEXITSTATUS(int status) { return (status & 0xff00) >> 8; } in WEXITSTATUS() method in OsConstants93 public static int WSTOPSIG(int status) { return WEXITSTATUS(status); } in WSTOPSIG()