From d328f2011fe7d37acd700add3ee801c26dfb7e1f Mon Sep 17 00:00:00 2001 From: "ted.mielczarek" Date: Tue, 25 Jan 2011 20:01:26 +0000 Subject: Rename duplicate argument names to make it compile with CLang. P=rafael.espindola R=ted at http://breakpad.appspot.com/248001 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@765 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/client/mac/handler/exception_handler.cc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/client/mac/handler') diff --git a/src/client/mac/handler/exception_handler.cc b/src/client/mac/handler/exception_handler.cc index 28d6ad64..a6786fa1 100644 --- a/src/client/mac/handler/exception_handler.cc +++ b/src/client/mac/handler/exception_handler.cc @@ -124,10 +124,10 @@ extern "C" exception_data_t exception_code, mach_msg_type_number_t code_count, thread_state_flavor_t *target_flavor, - thread_state_t thread_state, - mach_msg_type_number_t thread_state_count, - thread_state_t thread_state, - mach_msg_type_number_t *thread_state_count); + thread_state_t in_thread_state, + mach_msg_type_number_t in_thread_state_count, + thread_state_t out_thread_state, + mach_msg_type_number_t *out_thread_state_count); kern_return_t exception_raise_state_identity(mach_port_t target_port, @@ -137,10 +137,10 @@ extern "C" exception_data_t exception_code, mach_msg_type_number_t exception_code_count, thread_state_flavor_t *target_flavor, - thread_state_t thread_state, - mach_msg_type_number_t thread_state_count, - thread_state_t thread_state, - mach_msg_type_number_t *thread_state_count); + thread_state_t in_thread_state, + mach_msg_type_number_t in_thread_state_count, + thread_state_t out_thread_state, + mach_msg_type_number_t *out_thread_state_count); kern_return_t breakpad_exception_raise_state(mach_port_t exception_port, exception_type_t exception, -- cgit v1.2.1