Searched refs:WIFSIGNALED (Results 1 – 2 of 2) sorted by relevance
316 #ifndef WIFSIGNALED317 #define WIFSIGNALED(status) (((status)&0xFF) > 0 && ((status)&0xFF00) == 0) macro349 } else if (WIFSIGNALED(status)) { in UNIXProcess_waitForProcessExit()
115 public static boolean WIFSIGNALED(int status) { return (WTERMSIG(status + 1) >= 2); } in WIFSIGNALED() method in OsConstants