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

/xnu-2782.1.97/bsd/sys/
H A Dwait.h137 #define _WSTOPPED 0177 /* _WSTATUS if process is stopped */ macro
150 #define WIFCONTINUED(x) (_WSTATUS(x) == _WSTOPPED && WSTOPSIG(x) == 0x13)
151 #define WIFSTOPPED(x) (_WSTATUS(x) == _WSTOPPED && WSTOPSIG(x) != 0x13)
153 #define WIFSIGNALED(x) (_WSTATUS(x) != _WSTOPPED && _WSTATUS(x) != 0)
159 #define W_STOPCODE(sig) ((sig) << 8 | _WSTOPPED)
191 * If w_stopval==_WSTOPPED, then the second structure describes
244 #define WSTOPPED _WSTOPPED

Completed in 22 milliseconds