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, |
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12 // See the License for the specific language governing permissions and | 12 // See the License for the specific language governing permissions and |
13 // limitations under the License. | 13 // limitations under the License. |
14 | 14 |
15 #include "util/mach/exc_client_variants.h" | 15 #include "util/mach/exc_client_variants.h" |
16 | 16 |
17 #include <vector> | 17 #include <vector> |
18 | 18 |
19 #include "base/logging.h" | 19 #include "base/logging.h" |
20 #include "util/mach/exc.h" | 20 #include "util/mach/exc.h" |
21 #include "util/mach/mach_exc.h" | 21 #include "util/mach/mach_exc.h" |
22 #include "util/mach/mach_extensions.h" | |
23 | 22 |
24 namespace crashpad { | 23 namespace crashpad { |
25 | 24 |
26 kern_return_t UniversalExceptionRaise(exception_behavior_t behavior, | 25 kern_return_t UniversalExceptionRaise(exception_behavior_t behavior, |
27 exception_handler_t exception_port, | 26 exception_handler_t exception_port, |
28 thread_t thread, | 27 thread_t thread, |
29 task_t task, | 28 task_t task, |
30 exception_type_t exception, | 29 exception_type_t exception, |
31 const mach_exception_data_type_t* code, | 30 const mach_exception_data_type_t* code, |
32 mach_msg_type_number_t code_count, | 31 mach_msg_type_number_t code_count, |
33 thread_state_flavor_t* flavor, | 32 thread_state_flavor_t* flavor, |
34 const natural_t* old_state, | 33 ConstThreadState old_state, |
35 mach_msg_type_number_t old_state_count, | 34 mach_msg_type_number_t old_state_count, |
36 thread_state_t new_state, | 35 thread_state_t new_state, |
37 mach_msg_type_number_t* new_state_count) { | 36 mach_msg_type_number_t* new_state_count) { |
38 // This function is similar to 10.9.4 xnu-2422.110.17/osfmk/kern/exception.c | 37 // This function is similar to 10.9.4 xnu-2422.110.17/osfmk/kern/exception.c |
39 // exception_deliver() as far as the delivery logic is concerned. Unlike | 38 // exception_deliver() as far as the delivery logic is concerned. Unlike |
40 // exception_deliver(), this function does not get or set thread states for | 39 // exception_deliver(), this function does not get or set thread states for |
41 // behavior values that require this, as that is left to the caller to do if | 40 // behavior values that require this, as that is left to the caller to do if |
42 // needed. | 41 // needed. |
43 | 42 |
44 std::vector<exception_data_type_t> small_code_vector; | 43 std::vector<exception_data_type_t> small_code_vector; |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 new_state, | 120 new_state, |
122 new_state_count); | 121 new_state_count); |
123 | 122 |
124 default: | 123 default: |
125 NOTREACHED(); | 124 NOTREACHED(); |
126 return KERN_INVALID_ARGUMENT; | 125 return KERN_INVALID_ARGUMENT; |
127 } | 126 } |
128 } | 127 } |
129 | 128 |
130 } // namespace crashpad | 129 } // namespace crashpad |
OLD | NEW |