diff options
author | Jim Ingham <jingham@apple.com> | 2013-01-24 23:33:19 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2013-01-24 23:33:19 +0000 |
commit | d30df9e24c89aad7cfb21508213e15d79bb7a6e3 (patch) | |
tree | 2756a6805a374fc9cd332cc0fb4b02794916d2b7 /lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp | |
parent | 53616ad42da8da74e0104e23965f37261f7ebd3c (diff) | |
download | bcm5719-llvm-d30df9e24c89aad7cfb21508213e15d79bb7a6e3.tar.gz bcm5719-llvm-d30df9e24c89aad7cfb21508213e15d79bb7a6e3.zip |
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
Diffstat (limited to 'lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
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; |