Home
last modified time | relevance | path

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

/xnu-8796.121.2/bsd/sys/
H A Dwait.h149 #define WSTOPSIG(x) (_W_INT(x) >> 8) macro
150 #define WIFCONTINUED(x) (_WSTATUS(x) == _WSTOPPED && WSTOPSIG(x) == 0x13)
151 #define WIFSTOPPED(x) (_WSTATUS(x) == _WSTOPPED && WSTOPSIG(x) != 0x13)
/xnu-8796.121.2/tools/tests/execperf/
H A Drun.c83 errx(1, "process stopped with signal %d", WSTOPSIG(ret)); in work()