OLD | NEW |
1 // Copyright 2015 The Crashpad Authors. All rights reserved. | 1 // Copyright 2015 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 //! object’s CrashReportDatabase. | 59 //! object’s CrashReportDatabase. |
60 kern_return_t CatchMachException( | 60 kern_return_t CatchMachException( |
61 exception_behavior_t behavior, | 61 exception_behavior_t behavior, |
62 exception_handler_t exception_port, | 62 exception_handler_t exception_port, |
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 ConstThreadState 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 const mach_msg_trailer_t* trailer, |
74 bool* destroy_complex_request) override; | 74 bool* destroy_complex_request) override; |
75 | 75 |
76 private: | 76 private: |
77 CrashReportDatabase* database_; // weak | 77 CrashReportDatabase* database_; // weak |
78 CrashReportUploadThread* upload_thread_; // weak | 78 CrashReportUploadThread* upload_thread_; // weak |
79 const std::map<std::string, std::string>* process_annotations_; // weak | 79 const std::map<std::string, std::string>* process_annotations_; // weak |
80 | 80 |
81 DISALLOW_COPY_AND_ASSIGN(CrashReportExceptionHandler); | 81 DISALLOW_COPY_AND_ASSIGN(CrashReportExceptionHandler); |
82 }; | 82 }; |
83 | 83 |
84 } // namespace crashpad | 84 } // namespace crashpad |
85 | 85 |
86 #endif // CRASHPAD_HANDLER_MAC_CRASH_REPORT_EXCEPTION_HANDLER_H_ | 86 #endif // CRASHPAD_HANDLER_MAC_CRASH_REPORT_EXCEPTION_HANDLER_H_ |
OLD | NEW |