Home
last modified time | relevance | path

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

/bionic/libc/include/bits/
Dwait.h47 #define WTERMSIG(__status) ((__status) & 0x7f) macro
53 #define WIFEXITED(__status) (WTERMSIG(__status) == 0)
56 #define WIFSTOPPED(__status) (WTERMSIG(__status) == 0x7f)
59 #define WIFSIGNALED(__status) (WTERMSIG((__status)+1) >= 2)
/bionic/tests/headers/posix/
Dsys_wait_h.c56 #if !defined(WTERMSIG) in sys_wait_h()
57 #error WTERMSIG in sys_wait_h()
Dstdlib_h.c65 #if !defined(WTERMSIG) in stdlib_h()
66 #error WTERMSIG in stdlib_h()
/bionic/tests/
Dsystem_properties_test.cpp423 (WTERMSIG(exit_status) == SIGSEGV || in operator ()()
424 WTERMSIG(exit_status) == SIGBUS || in operator ()()
425 WTERMSIG(exit_status) == SIGABRT); in operator ()()
Dutils.h174 ASSERT_EQ(-expected_exit_status, WTERMSIG(status)) << *error_msg;
Dstdio_test.cpp950 EXPECT_EQ(7, WTERMSIG(status)); in TEST()
/bionic/libc/malloc_debug/tests/
Dmalloc_debug_system_tests.cpp133 << "Failed with signal " << WTERMSIG(status) << "\nOutput:\n" << output; in Exec()