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__


_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to