From d30df9e24c89aad7cfb21508213e15d79bb7a6e3 Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Thu, 24 Jan 2013 23:33:19 +0000 Subject: Don't listen for EXC_RESOURCE exceptions, those should really be handled by the system handler. Also put in string translations for a couple of exceptions we were missing. llvm-svn: 173390 --- lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lldb/source') diff --git a/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp b/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp index 5999e13fb70..60570b5b97d 100644 --- a/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp +++ b/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp @@ -210,6 +210,12 @@ StopInfoMachException::GetDescription () case 10: exc_desc = "EXC_CRASH"; break; + case 11: + exc_desc = "EXC_RESOURCE"; + break; + case 12: + exc_desc = "EXC_GUARD"; + break; } StreamString strm; -- cgit v1.2.3