Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2374)

Unified Diff: base/mac/os_crash_dumps.cc

Issue 347803004: Ensure the OSX crash catcher does not trigger on SIGABRT when disabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/test/data/nacl/bad/ppapi_bad.html » ('j') | chrome/test/nacl/nacl_browsertest.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/mac/os_crash_dumps.cc
diff --git a/base/mac/os_crash_dumps.cc b/base/mac/os_crash_dumps.cc
index e50ac3974215d995be9eef7b4deeb4fe0d8c2e1a..380a4016d28e2fae399d9b2bc72a8e46b5922317 100644
--- a/base/mac/os_crash_dumps.cc
+++ b/base/mac/os_crash_dumps.cc
@@ -32,6 +32,7 @@ void DisableOSCrashDumps() {
const int signals_to_intercept[] = {
SIGILL, // EXC_BAD_INSTRUCTION
SIGTRAP, // EXC_BREAKPOINT
+ SIGABRT, // EXC_CRASH
Mark Seaborn 2014/06/19 18:28:14 FWIW, the comment is misleading. See http://lacki
Nick Bray (chromium) 2014/06/19 20:49:55 Done.
SIGFPE, // EXC_ARITHMETIC
SIGBUS, // EXC_BAD_ACCESS
SIGSEGV // EXC_BAD_ACCESS
« no previous file with comments | « no previous file | chrome/test/data/nacl/bad/ppapi_bad.html » ('j') | chrome/test/nacl/nacl_browsertest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698