Searched refs:_W_INT (Results 1 – 2 of 2) sorted by relevance
36 #define _W_INT(w) (*(int*)&(w)) /* convert union wait to int */ macro37 #define WIFEXITED(w) (!((_W_INT(w)) & 0377))38 #define WIFSTOPPED(w) ((_W_INT(w)) & 0100)40 #define WEXITSTATUS(w) (int)(WIFEXITED(w) ? ((_W_INT(w) >> 8) & 0377) : -1)41 #define WTERMSIG(w) (int)(WIFSIGNALED(w) ? (_W_INT(w) & 0177) : -1)43 #define WCOREDUMP(w) ((_W_INT(w)) & WCOREFLAG)
7 def _W_INT(i): return (i) function12 def WIFEXITED(stat): return ((_W_INT(stat)&0377)==0)14 def WEXITSTATUS(stat): return ((_W_INT(stat)>>8)&0377)16 def WTERMSIG(stat): return (_W_INT(stat)&0177)18 def WSTOPSIG(stat): return ((_W_INT(stat)>>8)&0377)30 def WWORD(stat): return (_W_INT(stat)&0177777)34 def WCOREDUMP(stat): return (_W_INT(stat) & WCOREFLAG)