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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 //! | 43 //! |
44 //! Other than \a process_reader, the parameters may be passed directly | 44 //! Other than \a process_reader, the parameters may be passed directly |
45 //! through from a Mach exception handler. | 45 //! through from a Mach exception handler. |
46 //! | 46 //! |
47 //! \param[in] process_reader A ProcessReader for the task that sustained the | 47 //! \param[in] process_reader A ProcessReader for the task that sustained the |
48 //! exception. | 48 //! exception. |
49 //! | 49 //! |
50 //! \return `true` if the snapshot could be created, `false` otherwise with | 50 //! \return `true` if the snapshot could be created, `false` otherwise with |
51 //! an appropriate message logged. | 51 //! an appropriate message logged. |
52 bool Initialize(ProcessReader* process_reader, | 52 bool Initialize(ProcessReader* process_reader, |
| 53 exception_behavior_t behavior, |
53 thread_t exception_thread, | 54 thread_t exception_thread, |
54 exception_type_t exception, | 55 exception_type_t exception, |
55 const mach_exception_data_type_t* code, | 56 const mach_exception_data_type_t* code, |
56 mach_msg_type_number_t code_count, | 57 mach_msg_type_number_t code_count, |
57 thread_state_flavor_t flavor, | 58 thread_state_flavor_t flavor, |
58 const natural_t* state, | 59 const natural_t* state, |
59 mach_msg_type_number_t state_count); | 60 mach_msg_type_number_t state_count); |
60 | 61 |
61 // ExceptionSnapshot: | 62 // ExceptionSnapshot: |
62 | 63 |
(...skipping 19 matching lines...) Expand all Loading... |
82 uint32_t exception_code_0_; | 83 uint32_t exception_code_0_; |
83 InitializationStateDcheck initialized_; | 84 InitializationStateDcheck initialized_; |
84 | 85 |
85 DISALLOW_COPY_AND_ASSIGN(ExceptionSnapshotMac); | 86 DISALLOW_COPY_AND_ASSIGN(ExceptionSnapshotMac); |
86 }; | 87 }; |
87 | 88 |
88 } // namespace internal | 89 } // namespace internal |
89 } // namespace crashpad | 90 } // namespace crashpad |
90 | 91 |
91 #endif // CRASHPAD_SNAPSHOT_MAC_EXCEPTION_SNAPSHOT_MAC_H_ | 92 #endif // CRASHPAD_SNAPSHOT_MAC_EXCEPTION_SNAPSHOT_MAC_H_ |
OLD | NEW |