Home
last modified time | relevance | path

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

/bionic/libc/include/sys/
Dwait.h41 #define WTERMSIG(s) ((s) & 0x7f) macro
44 #define WIFEXITED(s) (WTERMSIG(s) == 0)
45 #define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f)
46 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
/bionic/tests/
Dsystem_properties_test.cpp398 (WTERMSIG(exit_status) == SIGSEGV || in operator ()()
399 WTERMSIG(exit_status) == SIGBUS || in operator ()()
400 WTERMSIG(exit_status) == SIGABRT); in operator ()()
Dgtest_main.cpp733 testcase.GetTestName(test_id).c_str(), strsignal(WTERMSIG(child_proc.exit_status))); in CollectChildTestResult()