From c3678a664c77809338e0708f1818580c8a71db6e Mon Sep 17 00:00:00 2001 From: Geoff Norton Date: Sun, 8 Feb 2015 20:36:28 -0800 Subject: [PATCH] Set the mach exception default to MachException_SuppressDebugging for now, so that debugging with lldb isnt painful --- src/pal/src/exception/machexception.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pal/src/exception/machexception.cpp b/src/pal/src/exception/machexception.cpp index 413fd500b3b7..55bb3ae3491d 100644 --- a/src/pal/src/exception/machexception.cpp +++ b/src/pal/src/exception/machexception.cpp @@ -123,7 +123,7 @@ enum MachExceptionMode MachException_SuppressManaged = 4, // Default value to use if environment variable not set. - MachException_Default = 0, + MachException_Default = 2, }; static exception_mask_t GetExceptionMask()