Searched refs:WTERMSIG (Results 1 – 7 of 7) sorted by relevance
47 #define WTERMSIG(__status) ((__status) & 0x7f) macro53 #define WIFEXITED(__status) (WTERMSIG(__status) == 0)56 #define WIFSTOPPED(__status) (WTERMSIG(__status) == 0x7f)59 #define WIFSIGNALED(__status) (WTERMSIG((__status)+1) >= 2)
56 #if !defined(WTERMSIG) in sys_wait_h()57 #error WTERMSIG in sys_wait_h()
65 #if !defined(WTERMSIG) in stdlib_h()66 #error WTERMSIG in stdlib_h()
423 (WTERMSIG(exit_status) == SIGSEGV || in operator ()()424 WTERMSIG(exit_status) == SIGBUS || in operator ()()425 WTERMSIG(exit_status) == SIGABRT); in operator ()()
174 ASSERT_EQ(-expected_exit_status, WTERMSIG(status)) << *error_msg;
950 EXPECT_EQ(7, WTERMSIG(status)); in TEST()
133 << "Failed with signal " << WTERMSIG(status) << "\nOutput:\n" << output; in Exec()