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

/xnu-2782.1.97/bsd/sys/
H A Dwait.h136 #define _WSTATUS(x) (_W_INT(x) & 0177) macro
137 #define _WSTOPPED 0177 /* _WSTATUS if process is stopped */
150 #define WIFCONTINUED(x) (_WSTATUS(x) == _WSTOPPED && WSTOPSIG(x) == 0x13)
151 #define WIFSTOPPED(x) (_WSTATUS(x) == _WSTOPPED && WSTOPSIG(x) != 0x13)
152 #define WIFEXITED(x) (_WSTATUS(x) == 0)
153 #define WIFSIGNALED(x) (_WSTATUS(x) != _WSTOPPED && _WSTATUS(x) != 0)
154 #define WTERMSIG(x) (_WSTATUS(x))

Completed in 13 milliseconds