[Lldb-commits] [lldb] r201609 - Add two additional trap handler names for PlatformDarwinKernel.

Jason Molenda jmolenda at apple.com
Tue Feb 18 14:35:38 PST 2014


Author: jmolenda
Date: Tue Feb 18 16:35:38 2014
New Revision: 201609

URL: http://llvm.org/viewvc/llvm-project?rev=201609&view=rev
Log:
Add two additional trap handler names for PlatformDarwinKernel.
<rdar://problem/15246793> 

Modified:
    lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp

Modified: lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp?rev=201609&r1=201608&r2=201609&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp (original)
+++ lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp Tue Feb 18 16:35:38 2014
@@ -661,7 +661,9 @@ PlatformDarwinKernel::CalculateTrapHandl
 {   
     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__
 





More information about the lldb-commits mailing list