Home
last modified time | relevance | path

Searched refs:old_action (Results 1 – 2 of 2) sorted by relevance

/system/unwinding/libunwindstack/
DThreadUnwinder.cpp94 struct sigaction old_action = {}; in SendSignalToThread() local
96 if (sigaction(signal, &new_action, &old_action) != 0) { in SendSignalToThread()
112 sigaction(signal, &old_action, nullptr); in SendSignalToThread()
124 if (old_action.sa_sigaction == nullptr) { in SendSignalToThread()
134 sigaction(signal, &old_action, nullptr); in SendSignalToThread()
/system/core/debuggerd/handler/
Ddebuggerd_handler.cpp234 struct sigaction old_action; in have_siginfo() local
235 if (sigaction(signum, nullptr, &old_action) < 0) { in have_siginfo()
240 return (old_action.sa_flags & SA_SIGINFO) != 0; in have_siginfo()