Home | History | Annotate | Download | only in system

Lines Matching defs:WIFSIGNALED

81      * Tests whether the child dumped core. Only valid if WIFSIGNALED returns true.
86 * Returns the signal that caused the child to exit. Only valid if WIFSIGNALED returns true.
108 public static boolean WIFSIGNALED(int status) { return (WTERMSIG(status + 1) >= 2); }