aboutsummaryrefslogtreecommitdiff
path: root/src/client/mac/handler/exception_handler.cc
diff options
context:
space:
mode:
authorladderbreaker <ladderbreaker@4c0a9323-5329-0410-9bdc-e9ce6186880e>2007-05-07 19:48:02 +0000
committerladderbreaker <ladderbreaker@4c0a9323-5329-0410-9bdc-e9ce6186880e>2007-05-07 19:48:02 +0000
commit3d55532df2ea6bc8809513e8add14fb84bc62a62 (patch)
tree2194f8f62d1f090c7840a0f9da2db8c80d9aac36 /src/client/mac/handler/exception_handler.cc
parentIssue 163, reviewer mento. Make dynamic_images.cc build on 10.3.9 SDK + upda... (diff)
downloadbreakpad-3d55532df2ea6bc8809513e8add14fb84bc62a62.tar.xz
Issue 161: reviewer Waylonis
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@160 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client/mac/handler/exception_handler.cc')
-rw-r--r--src/client/mac/handler/exception_handler.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/mac/handler/exception_handler.cc b/src/client/mac/handler/exception_handler.cc
index eee562b2..ab2cc489 100644
--- a/src/client/mac/handler/exception_handler.cc
+++ b/src/client/mac/handler/exception_handler.cc
@@ -216,7 +216,7 @@ bool ExceptionHandler::WriteMinidumpWithException(int exception_type,
exception_code,
thread_name) ) {
if (exception_type && exception_code)
- exit(exception_type);
+ _exit(exception_type);
}
} else {
string minidump_id;
@@ -245,7 +245,7 @@ bool ExceptionHandler::WriteMinidumpWithException(int exception_type,
if (callback_(dump_path_c_, next_minidump_id_c_, callback_context_,
result)) {
if (exception_type && exception_code)
- exit(exception_type);
+ _exit(exception_type);
}
}
}