Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/sys/
H A Dwait.h136 #define _WSTATUS(x) (_W_INT(x) & 0177) macro
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))