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

/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Dwait.h136 #define _W_INT(i) (i) macro
138 #define _W_INT(w) (*(int *)&(w)) /* convert union wait to int */ macro
143 #define _WSTATUS(x) (_W_INT(x) & 0177)
151 #define WEXITSTATUS(x) ((_W_INT(x) >> 8) & 0x000000ff)
153 #define WEXITSTATUS(x) (_W_INT(x) >> 8)
156 #define WSTOPSIG(x) (_W_INT(x) >> 8)
163 #define WCOREDUMP(x) (_W_INT(x) & WCOREFLAG)

Completed in 23 milliseconds