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

Unified Diff: base/debug_util_mac.cc

Issue 115493: Fix for breakpad not generating a minidump in certain cases on OSX. (Closed)
Patch Set: Created 11 years, 7 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 | « DEPS ('k') | chrome/app/breakpad_mac.mm » ('j') | chrome/app/breakpad_mac.mm » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/debug_util_mac.cc
diff --git a/base/debug_util_mac.cc b/base/debug_util_mac.cc
index 3a1b184a9ca73db3e3757d3d389c1b5e55511330..5a523879d16848cda81db12bcab74357f31ce600 100644
--- a/base/debug_util_mac.cc
+++ b/base/debug_util_mac.cc
@@ -25,10 +25,9 @@ void DebugUtil::DisableOSCrashDumps() {
SIGBUS,
SIGSEGV,
SIGSYS,
- SIGPIPE,
SIGXCPU,
SIGXFSZ};
- // For all these signals, just wire thing sup so we exit immediately.
+ // For all these signals, just wire things up so we exit immediately.
for (size_t i = 0; i < arraysize(signals_to_intercept); ++i) {
signal(signals_to_intercept[i], ExitSignalHandler);
}
« no previous file with comments | « DEPS ('k') | chrome/app/breakpad_mac.mm » ('j') | chrome/app/breakpad_mac.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698