From 2ccbac3fee49665c19a201d98e3f2690f50edd3a Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Thu, 30 Mar 2017 00:23:46 +0000 Subject: [PATCH] Mask out EXC_SYSCALL exceptions as well. llvm-svn: 299040 --- lldb/tools/debugserver/source/MacOSX/MachException.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/tools/debugserver/source/MacOSX/MachException.cpp b/lldb/tools/debugserver/source/MacOSX/MachException.cpp index f6e778232b82..41a0f067cc7e 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,