Home
last modified time | relevance | path

Searched refs:_W_INT (Results 1 – 2 of 2) sorted by relevance

/external/openssh/openbsd-compat/
Dbsd-waitpid.h36 #define _W_INT(w) (*(int*)&(w)) /* convert union wait to int */ macro
37 #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)
/external/python/cpython2/Lib/plat-irix6/
DWAIT.py7 def _W_INT(i): return (i) function
12 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)