Searched refs:THREAD_SIGNAL (Results 1 – 3 of 3) sorted by relevance
/system/core/libbacktrace/ |
D | BacktraceCurrent.cpp | 99 BACK_LOGE("pid %d, tid %d: Received a spurious signal %d\n", getpid(), gettid(), THREAD_SIGNAL); in SignalLogOnly() 141 if (sigaction(THREAD_SIGNAL, &act, &oldact) != 0) { in UnwindThread() 149 if (tgkill(Pid(), Tid(), THREAD_SIGNAL) != 0) { in UnwindThread() 158 sigaction(THREAD_SIGNAL, &oldact, nullptr); in UnwindThread() 177 sigaction(THREAD_SIGNAL, &act, nullptr); in UnwindThread() 179 sigaction(THREAD_SIGNAL, &oldact, nullptr); in UnwindThread()
|
D | BacktraceCurrent.h | 31 #define THREAD_SIGNAL SIGRTMIN macro 33 #define THREAD_SIGNAL (__SIGRTMIN+1) macro
|
D | backtrace_test.cpp | 521 ASSERT_LT(THREAD_SIGNAL, SIGRTMIN); in TEST() 526 ASSERT_TRUE(sigaction(THREAD_SIGNAL, nullptr, &cur_action) == 0); in TEST() 540 ASSERT_TRUE(sigaction(THREAD_SIGNAL, nullptr, &new_action) == 0); in TEST()
|