diff options
-rw-r--r-- | lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp b/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp index 445bf944c87..074d7356027 100644 --- a/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp +++ b/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp @@ -661,7 +661,9 @@ PlatformDarwinKernel::CalculateTrapHandlerSymbolNames () { m_trap_handlers.push_back(ConstString ("trap_from_kernel")); m_trap_handlers.push_back(ConstString ("hndl_double_fault")); -} + m_trap_handlers.push_back(ConstString ("hndl_allintrs")); + m_trap_handlers.push_back(ConstString ("hndl_alltraps")); +} #else // __APPLE__ |