summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2017-03-30 00:23:46 +0000
committerJason Molenda <jmolenda@apple.com>2017-03-30 00:23:46 +0000
commit2ccbac3fee49665c19a201d98e3f2690f50edd3a (patch)
tree25510792506efcb54fed0697e6a9ac8eb5acea21
parent9ea300f08ddb63bd7c11d36c42db15d41bbc1666 (diff)
downloadbcm5719-llvm-2ccbac3fee49665c19a201d98e3f2690f50edd3a.tar.gz
bcm5719-llvm-2ccbac3fee49665c19a201d98e3f2690f50edd3a.zip
Mask out EXC_SYSCALL exceptions as well.
<rdar://problem/31335814> llvm-svn: 299040
-rw-r--r--lldb/tools/debugserver/source/MacOSX/MachException.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/tools/debugserver/source/MacOSX/MachException.cpp b/lldb/tools/debugserver/source/MacOSX/MachException.cpp
index f6e778232b8..41a0f067cc7 100644
--- a/lldb/tools/debugserver/source/MacOSX/MachException.cpp
+++ b/lldb/tools/debugserver/source/MacOSX/MachException.cpp
@@ -410,7 +410,7 @@ void MachException::Data::Dump() const {
#define EXC_MASK_RESOURCE (1 << EXC_RESOURCE)
#endif
-#define LLDB_EXC_MASK (EXC_MASK_ALL & ~EXC_MASK_RESOURCE)
+#define LLDB_EXC_MASK (EXC_MASK_ALL & ~EXC_MASK_RESOURCE & ~EXC_MASK_SYSCALL)
kern_return_t MachException::PortInfo::Save(task_t task) {
DNBLogThreadedIf(LOG_EXCEPTIONS | LOG_VERBOSE,
OpenPOWER on IntegriCloud