Home
last modified time | relevance | path

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

/xnu-8796.121.2/tests/
H A Dtest_ptraceme.c72 T_EXPECT_TRUE(WIFSTOPPED(child_status),
H A Dsuspended_spawn_26184412.c66 T_ASSERT_EQ(WIFSTOPPED(status), 1, "before SIGCONT: must be stopped"); in spawn_and_signal()
/xnu-8796.121.2/tools/tests/execperf/
H A Drun.c82 } else if (WIFSTOPPED(ret)) { in work()
/xnu-8796.121.2/bsd/sys/
H A Dwait.h151 #define WIFSTOPPED(x) (_WSTATUS(x) == _WSTOPPED && WSTOPSIG(x) != 0x13) macro