blob: 4bd3b3ae3a84341880136cc212ea0c35a770ce3b [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 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 */
Elliott Hughesffe67362011-07-17 12:09:27 -070016
Roland Levillain21482ad2017-01-19 20:04:27 +000017#include "runtime.h"
Mathieu Chartier15d34022014-02-26 17:16:38 -080018
Roland Levillain21482ad2017-01-19 20:04:27 +000019#include <signal.h>
20
21#include <cstring>
22
23#include "runtime_common.h"
Elliott Hughesffe67362011-07-17 12:09:27 -070024
25namespace art {
26
Mathieu Chartier15d34022014-02-26 17:16:38 -080027struct sigaction old_action;
Mathieu Chartier15d34022014-02-26 17:16:38 -080028
Roland Levillain21482ad2017-01-19 20:04:27 +000029void HandleUnexpectedSignalAndroid(int signal_number, siginfo_t* info, void* raw_context) {
Andreas Gampec6fe4272017-06-01 20:14:58 -070030 HandleUnexpectedSignalCommon(signal_number,
31 info,
32 raw_context,
33 /* handle_timeout_signal */ false,
34 /* dump_on_stderr */ false);
Roland Levillain21482ad2017-01-19 20:04:27 +000035
Mathieu Chartier15d34022014-02-26 17:16:38 -080036 // Run the old signal handler.
37 old_action.sa_sigaction(signal_number, info, raw_context);
38}
39
Elliott Hughes457005c2012-04-16 13:54:25 -070040void Runtime::InitPlatformSignalHandlers() {
Roland Levillain21482ad2017-01-19 20:04:27 +000041 // Enable the signal handler dumping crash information to the logcat
42 // when the Android root is not "/system".
43 const char* android_root = getenv("ANDROID_ROOT");
44 if (android_root != nullptr && strcmp(android_root, "/system") != 0) {
45 InitPlatformSignalHandlersCommon(HandleUnexpectedSignalAndroid,
46 &old_action,
47 /* handle_timeout_signal */ false);
Mathieu Chartier28c83592014-03-04 13:40:17 -080048 }
Elliott Hughes457005c2012-04-16 13:54:25 -070049}
50
Elliott Hughesffe67362011-07-17 12:09:27 -070051} // namespace art