diff options
Diffstat (limited to 'base/debug_util_mac.cc')
-rw-r--r-- | base/debug_util_mac.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/base/debug_util_mac.cc b/base/debug_util_mac.cc index 3a1b184..5a52387 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); } |