OLD | NEW |
1 // Copyright 2014 The Crashpad Authors. All rights reserved. | 1 // Copyright 2014 The Crashpad Authors. All rights reserved. |
2 // | 2 // |
3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
4 // you may not use this file except in compliance with the License. | 4 // you may not use this file except in compliance with the License. |
5 // You may obtain a copy of the License at | 5 // You may obtain a copy of the License at |
6 // | 6 // |
7 // http://www.apache.org/licenses/LICENSE-2.0 | 7 // http://www.apache.org/licenses/LICENSE-2.0 |
8 // | 8 // |
9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software |
10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 thread_t thread, | 63 thread_t thread, |
64 task_t task, | 64 task_t task, |
65 exception_type_t exception, | 65 exception_type_t exception, |
66 const mach_exception_data_type_t* code, | 66 const mach_exception_data_type_t* code, |
67 mach_msg_type_number_t code_count, | 67 mach_msg_type_number_t code_count, |
68 thread_state_flavor_t* flavor, | 68 thread_state_flavor_t* flavor, |
69 const natural_t* old_state, | 69 const natural_t* old_state, |
70 mach_msg_type_number_t old_state_count, | 70 mach_msg_type_number_t old_state_count, |
71 thread_state_t new_state, | 71 thread_state_t new_state, |
72 mach_msg_type_number_t* new_state_count, | 72 mach_msg_type_number_t* new_state_count, |
| 73 const mach_msg_trailer_t* trailer, |
73 bool* destroy_complex_request) override { | 74 bool* destroy_complex_request) override { |
74 *destroy_complex_request = true; | 75 *destroy_complex_request = true; |
75 ++*exceptions_handled_; | 76 ++*exceptions_handled_; |
76 | 77 |
77 fprintf(options_.file, | 78 fprintf(options_.file, |
78 "%s: behavior %s, ", | 79 "%s: behavior %s, ", |
79 me_.c_str(), | 80 me_.c_str(), |
80 ExceptionBehaviorToString( | 81 ExceptionBehaviorToString( |
81 behavior, kUseFullName | kUnknownIsNumeric | kUseOr).c_str()); | 82 behavior, kUseFullName | kUnknownIsNumeric | kUseOr).c_str()); |
82 | 83 |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 | 306 |
306 return EXIT_SUCCESS; | 307 return EXIT_SUCCESS; |
307 } | 308 } |
308 | 309 |
309 } // namespace | 310 } // namespace |
310 } // namespace crashpad | 311 } // namespace crashpad |
311 | 312 |
312 int main(int argc, char* argv[]) { | 313 int main(int argc, char* argv[]) { |
313 return crashpad::CatchExceptionToolMain(argc, argv); | 314 return crashpad::CatchExceptionToolMain(argc, argv); |
314 } | 315 } |
OLD | NEW |