Home
last modified time | relevance | path

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

/xnu-8796.121.2/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)
244 #define WSTOPPED _WSTOPPED