Searched refs:WTERMSIG (Results 1 – 5 of 5) sorted by relevance
140 # ifndef WTERMSIG141 # define WTERMSIG(x) ((x) & 0x7f) macro150 # define WIFSIGNALED(x) (WTERMSIG (x) != 0)153 # define WIFEXITED(x) (WTERMSIG (x) == 0)159 # ifndef WTERMSIG160 # define WTERMSIG(x) ((x).w_termsig) macro169 # define WIFSIGNALED(x) (WTERMSIG(x) != 0)172 # define WIFEXITED(x) (WTERMSIG(x) == 0)571 exit_sig = WIFSIGNALED (status) ? WTERMSIG (status) : 0; in reap_children()606 exit_sig = WIFSIGNALED (status) ? WTERMSIG (status) : 0; in reap_children()
209 #ifdef WTERMSIG210 /* If we have WEXITSTATUS and WTERMSIG, just use them on ints. */
277 self._return_code = -os.WTERMSIG(ret_code)
172 return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_; in operator ()()194 m << "Terminated by signal " << WTERMSIG(exit_code); in ExitSummary()
8473 #ifdef WTERMSIG8474 /* If we have WEXITSTATUS and WTERMSIG, just use them on ints. */