aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-01-25 20:01:26 +0000
committerted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-01-25 20:01:26 +0000
commitd328f2011fe7d37acd700add3ee801c26dfb7e1f (patch)
tree0b409a55c5f0a9d1b6d3b3670b3a48a6d6042265 /src
parentAdd missing constructor to CPPLanguage class to make it compile with CLang. (diff)
downloadbreakpad-d328f2011fe7d37acd700add3ee801c26dfb7e1f.tar.xz
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
Diffstat (limited to 'src')
-rw-r--r--src/client/mac/handler/exception_handler.cc16
1 files changed, 8 insertions, 8 deletions
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,