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

/xnu-2782.1.97/bsd/sys/
H A Dwait.h129 #define _W_INT(i) (i) macro
131 #define _W_INT(w) (*(int *)&(w)) /* convert union wait to int */ macro
136 #define _WSTATUS(x) (_W_INT(x) & 0177)
144 #define WEXITSTATUS(x) ((_W_INT(x) >> 8) & 0x000000ff)
146 #define WEXITSTATUS(x) (_W_INT(x) >> 8)
149 #define WSTOPSIG(x) (_W_INT(x) >> 8)
156 #define WCOREDUMP(x) (_W_INT(x) & WCOREFLAG)

Completed in 61 milliseconds