Lines Matching defs:WIFEXITED
459 # ifndef WIFEXITED
460 # define WIFEXITED(u_wait) (!(u_wait).w_termsig && !(u_wait).w_coredump)
463 # define WEXITSTATUS(u_wait) (WIFEXITED(u_wait)?((u_wait).w_retcode):-1)
11327 #ifdef WIFEXITED
11329 os.WIFEXITED -> bool
11342 return WIFEXITED(wait_status);
11344 #endif /* WIFEXITED */
14797 /* Only check if WIFEXITED is available: expect that it comes
14803 #if defined(WIFEXITED) || defined(MS_WINDOWS)
14813 * If WIFEXITED(status) is true, return WEXITSTATUS(status).
14837 if (WIFEXITED(wait_status)) {