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

/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Dwait.h143 #define _WSTATUS(x) (_W_INT(x) & 0177) macro
144 #define _WSTOPPED 0177 /* _WSTATUS if process is stopped */
157 #define WIFCONTINUED(x) (_WSTATUS(x) == _WSTOPPED && WSTOPSIG(x) == 0x13)
158 #define WIFSTOPPED(x) (_WSTATUS(x) == _WSTOPPED && WSTOPSIG(x) != 0x13)
159 #define WIFEXITED(x) (_WSTATUS(x) == 0)
160 #define WIFSIGNALED(x) (_WSTATUS(x) != _WSTOPPED && _WSTATUS(x) != 0)
161 #define WTERMSIG(x) (_WSTATUS(x))

Completed in 24 milliseconds