blob: 567657769622552120cca542ee52b5df9538b6cf [file] [log] [blame]
Roland Levillain21482ad2017-01-19 20:04:27 +00001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "runtime_common.h"
18
19#include <signal.h>
20
21#include <cinttypes>
22#include <iostream>
23#include <sstream>
24#include <string>
25
Andreas Gampe57943812017-12-06 21:39:13 -080026#include <android-base/logging.h>
27#include <android-base/stringprintf.h>
Roland Levillain21482ad2017-01-19 20:04:27 +000028
Andreas Gampe39b378c2017-12-07 15:44:13 -080029#include "base/aborting.h"
David Sehr891a50e2017-10-27 17:01:07 -070030#include "base/file_utils.h"
Andreas Gampe39b378c2017-12-07 15:44:13 -080031#include "base/logging.h" // For LogHelper, GetCmdLine.
Roland Levillain21482ad2017-01-19 20:04:27 +000032#include "base/macros.h"
33#include "base/mutex.h"
34#include "native_stack_dump.h"
Andreas Gampeb486a982017-06-01 13:45:54 -070035#include "runtime.h"
36#include "thread-current-inl.h"
Roland Levillain21482ad2017-01-19 20:04:27 +000037#include "thread_list.h"
38
39namespace art {
40
41using android::base::StringPrintf;
42
43static constexpr bool kUseSigRTTimeout = true;
Nicolas Geoffray6ee49712018-03-30 14:39:05 +000044static constexpr bool kDumpNativeStackOnTimeout = true;
Roland Levillain21482ad2017-01-19 20:04:27 +000045
46const char* GetSignalName(int signal_number) {
47 switch (signal_number) {
48 case SIGABRT: return "SIGABRT";
49 case SIGBUS: return "SIGBUS";
50 case SIGFPE: return "SIGFPE";
51 case SIGILL: return "SIGILL";
52 case SIGPIPE: return "SIGPIPE";
53 case SIGSEGV: return "SIGSEGV";
54#if defined(SIGSTKFLT)
55 case SIGSTKFLT: return "SIGSTKFLT";
56#endif
57 case SIGTRAP: return "SIGTRAP";
58 }
59 return "??";
60}
61
62const char* GetSignalCodeName(int signal_number, int signal_code) {
63 // Try the signal-specific codes...
64 switch (signal_number) {
65 case SIGILL:
66 switch (signal_code) {
67 case ILL_ILLOPC: return "ILL_ILLOPC";
68 case ILL_ILLOPN: return "ILL_ILLOPN";
69 case ILL_ILLADR: return "ILL_ILLADR";
70 case ILL_ILLTRP: return "ILL_ILLTRP";
71 case ILL_PRVOPC: return "ILL_PRVOPC";
72 case ILL_PRVREG: return "ILL_PRVREG";
73 case ILL_COPROC: return "ILL_COPROC";
74 case ILL_BADSTK: return "ILL_BADSTK";
75 }
76 break;
77 case SIGBUS:
78 switch (signal_code) {
79 case BUS_ADRALN: return "BUS_ADRALN";
80 case BUS_ADRERR: return "BUS_ADRERR";
81 case BUS_OBJERR: return "BUS_OBJERR";
82 }
83 break;
84 case SIGFPE:
85 switch (signal_code) {
86 case FPE_INTDIV: return "FPE_INTDIV";
87 case FPE_INTOVF: return "FPE_INTOVF";
88 case FPE_FLTDIV: return "FPE_FLTDIV";
89 case FPE_FLTOVF: return "FPE_FLTOVF";
90 case FPE_FLTUND: return "FPE_FLTUND";
91 case FPE_FLTRES: return "FPE_FLTRES";
92 case FPE_FLTINV: return "FPE_FLTINV";
93 case FPE_FLTSUB: return "FPE_FLTSUB";
94 }
95 break;
96 case SIGSEGV:
97 switch (signal_code) {
98 case SEGV_MAPERR: return "SEGV_MAPERR";
99 case SEGV_ACCERR: return "SEGV_ACCERR";
100#if defined(SEGV_BNDERR)
101 case SEGV_BNDERR: return "SEGV_BNDERR";
102#endif
103 }
104 break;
105 case SIGTRAP:
106 switch (signal_code) {
107 case TRAP_BRKPT: return "TRAP_BRKPT";
108 case TRAP_TRACE: return "TRAP_TRACE";
109 }
110 break;
111 }
112 // Then the other codes...
113 switch (signal_code) {
114 case SI_USER: return "SI_USER";
115#if defined(SI_KERNEL)
116 case SI_KERNEL: return "SI_KERNEL";
117#endif
118 case SI_QUEUE: return "SI_QUEUE";
119 case SI_TIMER: return "SI_TIMER";
120 case SI_MESGQ: return "SI_MESGQ";
121 case SI_ASYNCIO: return "SI_ASYNCIO";
122#if defined(SI_SIGIO)
123 case SI_SIGIO: return "SI_SIGIO";
124#endif
125#if defined(SI_TKILL)
126 case SI_TKILL: return "SI_TKILL";
127#endif
128 }
129 // Then give up...
130 return "?";
131}
132
Roland Levillain32a5bb22017-01-31 14:33:16 +0000133struct UContext {
134 explicit UContext(void* raw_context)
135 : context(reinterpret_cast<ucontext_t*>(raw_context)->uc_mcontext) {}
136
137 void Dump(std::ostream& os) const;
138
139 void DumpRegister32(std::ostream& os, const char* name, uint32_t value) const;
140 void DumpRegister64(std::ostream& os, const char* name, uint64_t value) const;
141
142 void DumpX86Flags(std::ostream& os, uint32_t flags) const;
Roland Levillaind89411a2017-01-31 17:36:07 +0000143 // Print some of the information from the status register (CPSR on ARMv7, PSTATE on ARMv8).
144 template <typename RegisterType>
145 void DumpArmStatusRegister(std::ostream& os, RegisterType status_register) const;
Roland Levillain32a5bb22017-01-31 14:33:16 +0000146
147 mcontext_t& context;
148};
149
Roland Levillain21482ad2017-01-19 20:04:27 +0000150void UContext::Dump(std::ostream& os) const {
Roland Levillain21482ad2017-01-19 20:04:27 +0000151#if defined(__APPLE__) && defined(__i386__)
152 DumpRegister32(os, "eax", context->__ss.__eax);
153 DumpRegister32(os, "ebx", context->__ss.__ebx);
154 DumpRegister32(os, "ecx", context->__ss.__ecx);
155 DumpRegister32(os, "edx", context->__ss.__edx);
156 os << '\n';
157
158 DumpRegister32(os, "edi", context->__ss.__edi);
159 DumpRegister32(os, "esi", context->__ss.__esi);
160 DumpRegister32(os, "ebp", context->__ss.__ebp);
161 DumpRegister32(os, "esp", context->__ss.__esp);
162 os << '\n';
163
164 DumpRegister32(os, "eip", context->__ss.__eip);
165 os << " ";
166 DumpRegister32(os, "eflags", context->__ss.__eflags);
167 DumpX86Flags(os, context->__ss.__eflags);
168 os << '\n';
169
170 DumpRegister32(os, "cs", context->__ss.__cs);
171 DumpRegister32(os, "ds", context->__ss.__ds);
172 DumpRegister32(os, "es", context->__ss.__es);
173 DumpRegister32(os, "fs", context->__ss.__fs);
174 os << '\n';
175 DumpRegister32(os, "gs", context->__ss.__gs);
176 DumpRegister32(os, "ss", context->__ss.__ss);
177#elif defined(__linux__) && defined(__i386__)
178 DumpRegister32(os, "eax", context.gregs[REG_EAX]);
179 DumpRegister32(os, "ebx", context.gregs[REG_EBX]);
180 DumpRegister32(os, "ecx", context.gregs[REG_ECX]);
181 DumpRegister32(os, "edx", context.gregs[REG_EDX]);
182 os << '\n';
183
184 DumpRegister32(os, "edi", context.gregs[REG_EDI]);
185 DumpRegister32(os, "esi", context.gregs[REG_ESI]);
186 DumpRegister32(os, "ebp", context.gregs[REG_EBP]);
187 DumpRegister32(os, "esp", context.gregs[REG_ESP]);
188 os << '\n';
189
190 DumpRegister32(os, "eip", context.gregs[REG_EIP]);
191 os << " ";
192 DumpRegister32(os, "eflags", context.gregs[REG_EFL]);
193 DumpX86Flags(os, context.gregs[REG_EFL]);
194 os << '\n';
195
196 DumpRegister32(os, "cs", context.gregs[REG_CS]);
197 DumpRegister32(os, "ds", context.gregs[REG_DS]);
198 DumpRegister32(os, "es", context.gregs[REG_ES]);
199 DumpRegister32(os, "fs", context.gregs[REG_FS]);
200 os << '\n';
201 DumpRegister32(os, "gs", context.gregs[REG_GS]);
202 DumpRegister32(os, "ss", context.gregs[REG_SS]);
203#elif defined(__linux__) && defined(__x86_64__)
204 DumpRegister64(os, "rax", context.gregs[REG_RAX]);
205 DumpRegister64(os, "rbx", context.gregs[REG_RBX]);
206 DumpRegister64(os, "rcx", context.gregs[REG_RCX]);
207 DumpRegister64(os, "rdx", context.gregs[REG_RDX]);
208 os << '\n';
209
210 DumpRegister64(os, "rdi", context.gregs[REG_RDI]);
211 DumpRegister64(os, "rsi", context.gregs[REG_RSI]);
212 DumpRegister64(os, "rbp", context.gregs[REG_RBP]);
213 DumpRegister64(os, "rsp", context.gregs[REG_RSP]);
214 os << '\n';
215
216 DumpRegister64(os, "r8 ", context.gregs[REG_R8]);
217 DumpRegister64(os, "r9 ", context.gregs[REG_R9]);
218 DumpRegister64(os, "r10", context.gregs[REG_R10]);
219 DumpRegister64(os, "r11", context.gregs[REG_R11]);
220 os << '\n';
221
222 DumpRegister64(os, "r12", context.gregs[REG_R12]);
223 DumpRegister64(os, "r13", context.gregs[REG_R13]);
224 DumpRegister64(os, "r14", context.gregs[REG_R14]);
225 DumpRegister64(os, "r15", context.gregs[REG_R15]);
226 os << '\n';
227
228 DumpRegister64(os, "rip", context.gregs[REG_RIP]);
229 os << " ";
230 DumpRegister32(os, "eflags", context.gregs[REG_EFL]);
231 DumpX86Flags(os, context.gregs[REG_EFL]);
232 os << '\n';
233
234 DumpRegister32(os, "cs", (context.gregs[REG_CSGSFS]) & 0x0FFFF);
235 DumpRegister32(os, "gs", (context.gregs[REG_CSGSFS] >> 16) & 0x0FFFF);
236 DumpRegister32(os, "fs", (context.gregs[REG_CSGSFS] >> 32) & 0x0FFFF);
237 os << '\n';
Roland Levillaind89411a2017-01-31 17:36:07 +0000238#elif defined(__linux__) && defined(__arm__)
239 DumpRegister32(os, "r0", context.arm_r0);
240 DumpRegister32(os, "r1", context.arm_r1);
241 DumpRegister32(os, "r2", context.arm_r2);
242 DumpRegister32(os, "r3", context.arm_r3);
243 os << '\n';
244
245 DumpRegister32(os, "r4", context.arm_r4);
246 DumpRegister32(os, "r5", context.arm_r5);
247 DumpRegister32(os, "r6", context.arm_r6);
248 DumpRegister32(os, "r7", context.arm_r7);
249 os << '\n';
250
251 DumpRegister32(os, "r8", context.arm_r8);
252 DumpRegister32(os, "r9", context.arm_r9);
253 DumpRegister32(os, "r10", context.arm_r10);
254 DumpRegister32(os, "fp", context.arm_fp);
255 os << '\n';
256
257 DumpRegister32(os, "ip", context.arm_ip);
258 DumpRegister32(os, "sp", context.arm_sp);
259 DumpRegister32(os, "lr", context.arm_lr);
260 DumpRegister32(os, "pc", context.arm_pc);
261 os << '\n';
262
263 DumpRegister32(os, "cpsr", context.arm_cpsr);
264 DumpArmStatusRegister(os, context.arm_cpsr);
265 os << '\n';
266#elif defined(__linux__) && defined(__aarch64__)
267 for (size_t i = 0; i <= 30; ++i) {
268 std::string reg_name = "x" + std::to_string(i);
269 DumpRegister64(os, reg_name.c_str(), context.regs[i]);
270 if (i % 4 == 3) {
271 os << '\n';
272 }
273 }
274 os << '\n';
275
276 DumpRegister64(os, "sp", context.sp);
277 DumpRegister64(os, "pc", context.pc);
278 os << '\n';
279
280 DumpRegister64(os, "pstate", context.pstate);
281 DumpArmStatusRegister(os, context.pstate);
282 os << '\n';
Roland Levillain21482ad2017-01-19 20:04:27 +0000283#else
Roland Levillaind89411a2017-01-31 17:36:07 +0000284 // TODO: Add support for MIPS32 and MIPS64.
Roland Levillain21482ad2017-01-19 20:04:27 +0000285 os << "Unknown architecture/word size/OS in ucontext dump";
286#endif
287}
288
289void UContext::DumpRegister32(std::ostream& os, const char* name, uint32_t value) const {
290 os << StringPrintf(" %6s: 0x%08x", name, value);
291}
292
293void UContext::DumpRegister64(std::ostream& os, const char* name, uint64_t value) const {
294 os << StringPrintf(" %6s: 0x%016" PRIx64, name, value);
295}
296
297void UContext::DumpX86Flags(std::ostream& os, uint32_t flags) const {
298 os << " [";
299 if ((flags & (1 << 0)) != 0) {
300 os << " CF";
301 }
302 if ((flags & (1 << 2)) != 0) {
303 os << " PF";
304 }
305 if ((flags & (1 << 4)) != 0) {
306 os << " AF";
307 }
308 if ((flags & (1 << 6)) != 0) {
309 os << " ZF";
310 }
311 if ((flags & (1 << 7)) != 0) {
312 os << " SF";
313 }
314 if ((flags & (1 << 8)) != 0) {
315 os << " TF";
316 }
317 if ((flags & (1 << 9)) != 0) {
318 os << " IF";
319 }
320 if ((flags & (1 << 10)) != 0) {
321 os << " DF";
322 }
323 if ((flags & (1 << 11)) != 0) {
324 os << " OF";
325 }
326 os << " ]";
327}
328
Roland Levillaind89411a2017-01-31 17:36:07 +0000329template <typename RegisterType>
330void UContext::DumpArmStatusRegister(std::ostream& os, RegisterType status_register) const {
331 // Condition flags.
332 constexpr RegisterType kFlagV = 1U << 28;
333 constexpr RegisterType kFlagC = 1U << 29;
334 constexpr RegisterType kFlagZ = 1U << 30;
335 constexpr RegisterType kFlagN = 1U << 31;
336
337 os << " [";
338 if ((status_register & kFlagN) != 0) {
339 os << " N";
340 }
341 if ((status_register & kFlagZ) != 0) {
342 os << " Z";
343 }
344 if ((status_register & kFlagC) != 0) {
345 os << " C";
346 }
347 if ((status_register & kFlagV) != 0) {
348 os << " V";
349 }
350 os << " ]";
351}
352
Roland Levillain21482ad2017-01-19 20:04:27 +0000353int GetTimeoutSignal() {
354#if defined(__APPLE__)
355 // Mac does not support realtime signals.
356 UNUSED(kUseSigRTTimeout);
357 return -1;
358#else
359 return kUseSigRTTimeout ? (SIGRTMIN + 2) : -1;
360#endif
361}
362
363static bool IsTimeoutSignal(int signal_number) {
364 return signal_number == GetTimeoutSignal();
365}
366
Roland Levillain32a5bb22017-01-31 14:33:16 +0000367#if defined(__APPLE__)
368// On macOS, clang complains about art::HandleUnexpectedSignalCommon's
369// stack frame size being too large; disable that warning locally.
370#pragma GCC diagnostic push
371#pragma GCC diagnostic ignored "-Wframe-larger-than="
372#endif
373
Andreas Gampe44f67602018-11-28 08:27:27 -0800374std::string GetFaultMessageForAbortLogging() {
375 Runtime* runtime = Runtime::Current();
376 return (runtime != nullptr) ? runtime->GetFaultMessage() : "";
377}
378
Andreas Gampecdd53142018-03-28 21:17:43 -0700379static void HandleUnexpectedSignalCommonDump(int signal_number,
380 siginfo_t* info,
381 void* raw_context,
382 bool handle_timeout_signal,
383 bool dump_on_stderr) {
Andreas Gampec6fe4272017-06-01 20:14:58 -0700384 auto logger = [&](auto& stream) {
385 bool has_address = (signal_number == SIGILL || signal_number == SIGBUS ||
386 signal_number == SIGFPE || signal_number == SIGSEGV);
387 OsInfo os_info;
388 const char* cmd_line = GetCmdLine();
389 if (cmd_line == nullptr) {
390 cmd_line = "<unset>"; // Because no-one called InitLogging.
391 }
392 pid_t tid = GetTid();
393 std::string thread_name(GetThreadName(tid));
394 UContext thread_context(raw_context);
395 Backtrace thread_backtrace(raw_context);
Roland Levillain21482ad2017-01-19 20:04:27 +0000396
Andreas Gampec6fe4272017-06-01 20:14:58 -0700397 stream << "*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***" << std::endl
398 << StringPrintf("Fatal signal %d (%s), code %d (%s)",
399 signal_number,
400 GetSignalName(signal_number),
401 info->si_code,
402 GetSignalCodeName(signal_number, info->si_code))
403 << (has_address ? StringPrintf(" fault addr %p", info->si_addr) : "") << std::endl
404 << "OS: " << Dumpable<OsInfo>(os_info) << std::endl
405 << "Cmdline: " << cmd_line << std::endl
406 << "Thread: " << tid << " \"" << thread_name << "\"" << std::endl
407 << "Registers:\n" << Dumpable<UContext>(thread_context) << std::endl
Orion Hodson496b8832017-09-11 16:54:57 +0100408 << "Backtrace:\n" << Dumpable<Backtrace>(thread_backtrace) << std::endl;
409 stream << std::flush;
Andreas Gampec6fe4272017-06-01 20:14:58 -0700410 };
Roland Levillain21482ad2017-01-19 20:04:27 +0000411
Roland Levillain21482ad2017-01-19 20:04:27 +0000412 if (dump_on_stderr) {
413 // Note: We are using cerr directly instead of LOG macros to ensure even just partial output
414 // makes it out. That means we lose the "dalvikvm..." prefix, but that is acceptable
415 // considering this is an abort situation.
Andreas Gampec6fe4272017-06-01 20:14:58 -0700416 logger(std::cerr);
Roland Levillain21482ad2017-01-19 20:04:27 +0000417 } else {
Andreas Gampec6fe4272017-06-01 20:14:58 -0700418 logger(LOG_STREAM(FATAL_WITHOUT_ABORT));
Roland Levillain21482ad2017-01-19 20:04:27 +0000419 }
420 if (kIsDebugBuild && signal_number == SIGSEGV) {
Andreas Gampe39b378c2017-12-07 15:44:13 -0800421 PrintFileToLog("/proc/self/maps", android::base::LogSeverity::FATAL_WITHOUT_ABORT);
Roland Levillain21482ad2017-01-19 20:04:27 +0000422 }
423
424 Runtime* runtime = Runtime::Current();
425 if (runtime != nullptr) {
426 if (handle_timeout_signal && IsTimeoutSignal(signal_number)) {
427 // Special timeout signal. Try to dump all threads.
428 // Note: Do not use DumpForSigQuit, as that might disable native unwind, but the native parts
429 // are of value here.
Nicolas Geoffray6ee49712018-03-30 14:39:05 +0000430 runtime->GetThreadList()->Dump(std::cerr, kDumpNativeStackOnTimeout);
Roland Levillain21482ad2017-01-19 20:04:27 +0000431 std::cerr << std::endl;
432 }
433
434 if (dump_on_stderr) {
Andreas Gampe44f67602018-11-28 08:27:27 -0800435 std::cerr << "Fault message: " << GetFaultMessageForAbortLogging() << std::endl;
Roland Levillain21482ad2017-01-19 20:04:27 +0000436 } else {
Andreas Gampe44f67602018-11-28 08:27:27 -0800437 LOG(FATAL_WITHOUT_ABORT) << "Fault message: " << GetFaultMessageForAbortLogging();
Roland Levillain21482ad2017-01-19 20:04:27 +0000438 }
439 }
440}
441
Andreas Gampecdd53142018-03-28 21:17:43 -0700442void HandleUnexpectedSignalCommon(int signal_number,
443 siginfo_t* info,
444 void* raw_context,
445 bool handle_timeout_signal,
446 bool dump_on_stderr) {
447 // Local _static_ storing the currently handled signal (or -1).
448 static int handling_unexpected_signal = -1;
449
450 // Whether the dump code should be run under the unexpected-signal lock. For diagnostics we
451 // allow recursive unexpected-signals in certain cases - avoid a deadlock.
452 bool grab_lock = true;
453
454 if (handling_unexpected_signal != -1) {
455 LogHelper::LogLineLowStack(__FILE__,
456 __LINE__,
457 ::android::base::FATAL_WITHOUT_ABORT,
458 "HandleUnexpectedSignal reentered\n");
459 // Print the signal number. Don't use any standard functions, just some arithmetic. Just best
460 // effort, with a minimal buffer.
461 if (0 < signal_number && signal_number < 100) {
462 char buf[] = { ' ',
463 'S',
464 static_cast<char>('0' + (signal_number / 10)),
465 static_cast<char>('0' + (signal_number % 10)),
466 '\n',
467 0 };
468 LogHelper::LogLineLowStack(__FILE__,
469 __LINE__,
470 ::android::base::FATAL_WITHOUT_ABORT,
471 buf);
472 }
473 if (handle_timeout_signal) {
474 if (IsTimeoutSignal(signal_number)) {
475 // Ignore a recursive timeout.
476 return;
477 }
478 }
479 // If we were handling a timeout signal, try to go on. Otherwise hard-exit.
480 // This relies on the expectation that we'll only ever get one timeout signal.
481 if (!handle_timeout_signal || handling_unexpected_signal != GetTimeoutSignal()) {
482 _exit(1);
483 }
484 grab_lock = false; // The "outer" handling instance already holds the lock.
485 }
486 handling_unexpected_signal = signal_number;
487
488 gAborting++; // set before taking any locks
489
490 if (grab_lock) {
491 MutexLock mu(Thread::Current(), *Locks::unexpected_signal_lock_);
492
493 HandleUnexpectedSignalCommonDump(signal_number,
494 info,
495 raw_context,
496 handle_timeout_signal,
497 dump_on_stderr);
498 } else {
499 HandleUnexpectedSignalCommonDump(signal_number,
500 info,
501 raw_context,
502 handle_timeout_signal,
503 dump_on_stderr);
504 }
505}
506
Roland Levillain32a5bb22017-01-31 14:33:16 +0000507#if defined(__APPLE__)
508#pragma GCC diagnostic pop
509#endif
510
Roland Levillain21482ad2017-01-19 20:04:27 +0000511void InitPlatformSignalHandlersCommon(void (*newact)(int, siginfo_t*, void*),
512 struct sigaction* oldact,
513 bool handle_timeout_signal) {
514 struct sigaction action;
515 memset(&action, 0, sizeof(action));
516 sigemptyset(&action.sa_mask);
517 action.sa_sigaction = newact;
518 // Use the three-argument sa_sigaction handler.
519 action.sa_flags |= SA_SIGINFO;
520 // Use the alternate signal stack so we can catch stack overflows.
521 action.sa_flags |= SA_ONSTACK;
522
523 int rc = 0;
524 rc += sigaction(SIGABRT, &action, oldact);
525 rc += sigaction(SIGBUS, &action, oldact);
526 rc += sigaction(SIGFPE, &action, oldact);
527 rc += sigaction(SIGILL, &action, oldact);
528 rc += sigaction(SIGPIPE, &action, oldact);
529 rc += sigaction(SIGSEGV, &action, oldact);
530#if defined(SIGSTKFLT)
531 rc += sigaction(SIGSTKFLT, &action, oldact);
532#endif
533 rc += sigaction(SIGTRAP, &action, oldact);
534 // Special dump-all timeout.
535 if (handle_timeout_signal && GetTimeoutSignal() != -1) {
536 rc += sigaction(GetTimeoutSignal(), &action, oldact);
537 }
538 CHECK_EQ(rc, 0);
539}
540
541} // namespace art