Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/native/
DUNIXProcess_md.c316 #ifndef WIFSIGNALED
317 #define WIFSIGNALED(status) (((status)&0xFF) > 0 && ((status)&0xFF00) == 0) macro
349 } else if (WIFSIGNALED(status)) { in UNIXProcess_waitForProcessExit()
/libcore/luni/src/main/java/android/system/
DOsConstants.java115 public static boolean WIFSIGNALED(int status) { return (WTERMSIG(status + 1) >= 2); } in WIFSIGNALED() method in OsConstants