Searched refs:WTERMSIG (Results 1 – 2 of 2) sorted by relevance
317 #ifndef WTERMSIG318 #define WTERMSIG(status) ((status)&0x7F) macro355 return WTERMSIG(status); in UNIXProcess_waitForProcessExit()357 return 0x80 + WTERMSIG(status); in UNIXProcess_waitForProcessExit()
88 public static int WTERMSIG(int status) { return status & 0x7f; } in WTERMSIG() method in OsConstants98 public static boolean WIFEXITED(int status) { return (WTERMSIG(status) == 0); } in WIFEXITED()103 public static boolean WIFSTOPPED(int status) { return (WTERMSIG(status) == 0x7f); } in WIFSTOPPED()108 public static boolean WIFSIGNALED(int status) { return (WTERMSIG(status + 1) >= 2); } in WIFSIGNALED()