diff options
author | mmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2009-11-11 14:47:01 +0000 |
---|---|---|
committer | mmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2009-11-11 14:47:01 +0000 |
commit | ebebd0fcef7540fc51c23de50d45e79e260a30cb (patch) | |
tree | 0466f4c0d53579a1dde417f79171e88204c13809 /src/client/mac | |
parent | Fix when walking stack when no module list is present and the return address ... (diff) | |
download | breakpad-ebebd0fcef7540fc51c23de50d45e79e260a30cb.tar.xz |
Always export catch_exception_raise.
Patch by Jeremy Moskovich <jeremy@chromium.org>
Code review URL: http://breakpad.appspot.com/37001
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@428 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client/mac')
-rw-r--r-- | src/client/mac/handler/exception_handler.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/client/mac/handler/exception_handler.cc b/src/client/mac/handler/exception_handler.cc index 8c4a0d50..4a5d4596 100644 --- a/src/client/mac/handler/exception_handler.cc +++ b/src/client/mac/handler/exception_handler.cc @@ -92,12 +92,15 @@ extern "C" boolean_t exc_server(mach_msg_header_t *request, mach_msg_header_t *reply); + // This symbol must be visible to dlsym() - see + // http://code.google.com/p/google-breakpad/issues/detail?id=345 for details. kern_return_t catch_exception_raise(mach_port_t target_port, mach_port_t failed_thread, mach_port_t task, exception_type_t exception, exception_data_t code, - mach_msg_type_number_t code_count); + mach_msg_type_number_t code_count) + __attribute__((visibility("default"))); kern_return_t ForwardException(mach_port_t task, mach_port_t failed_thread, |