Searched refs:_W_INT (Results 1 – 1 of 1) sorted by relevance
43 #define _W_INT(w) (*(int*)&(w)) /* convert union wait to int */ macro44 #define WIFEXITED(w) (!((_W_INT(w)) & 0377))45 #define WIFSTOPPED(w) ((_W_INT(w)) & 0100)47 #define WEXITSTATUS(w) (int)(WIFEXITED(w) ? ((_W_INT(w) >> 8) & 0377) : -1)48 #define WTERMSIG(w) (int)(WIFSIGNALED(w) ? (_W_INT(w) & 0177) : -1)50 #define WCOREDUMP(w) ((_W_INT(w)) & WCOREFLAG)