diff options
Diffstat (limited to 'runtime/fault_handler.cc')
-rw-r--r-- | runtime/fault_handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/fault_handler.cc b/runtime/fault_handler.cc index 6b216c7e89..3112bc0a28 100644 --- a/runtime/fault_handler.cc +++ b/runtime/fault_handler.cc @@ -67,7 +67,7 @@ void FaultManager::Init() { action.sa_sigaction = art_fault_handler; sigemptyset(&action.sa_mask); action.sa_flags = SA_SIGINFO | SA_ONSTACK; -#if !defined(__mips__) +#if !defined(__APPLE__) && !defined(__mips__) action.sa_restorer = nullptr; #endif |