[Lldb-commits] [lldb] r201611 - Also recognize interrupt as a possible trap handler name.

Jason Molenda jmolenda at apple.com
Tue Feb 18 14:48:27 PST 2014


Author: jmolenda
Date: Tue Feb 18 16:48:27 2014
New Revision: 201611

URL: http://llvm.org/viewvc/llvm-project?rev=201611&view=rev
Log:
Also recognize interrupt as a possible trap handler name.

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=201611&r1=201610&r2=201611&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp (original)
+++ lldb/trunk/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp Tue Feb 18 16:48:27 2014
@@ -663,6 +663,7 @@ PlatformDarwinKernel::CalculateTrapHandl
     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"));
+    m_trap_handlers.push_back(ConstString ("interrupt"));
 }
 
 #else  // __APPLE__





More information about the lldb-commits mailing list