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 #ifndef CRASHPAD_UTIL_MACH_EXCEPTION_PORTS_H_ | 15 #ifndef CRASHPAD_UTIL_MACH_EXCEPTION_PORTS_H_ |
16 #define CRASHPAD_UTIL_MACH_EXCEPTION_PORTS_H_ | 16 #define CRASHPAD_UTIL_MACH_EXCEPTION_PORTS_H_ |
17 | 17 |
18 #include <mach/mach.h> | 18 #include <mach/mach.h> |
19 | 19 |
20 #include <vector> | 20 #include <vector> |
21 | 21 |
22 #include "base/basictypes.h" | 22 #include "base/macros.h" |
23 | 23 |
24 namespace crashpad { | 24 namespace crashpad { |
25 | 25 |
26 //! \brief A better interface to `*_get_exception_ports()` and | 26 //! \brief A better interface to `*_get_exception_ports()` and |
27 //! `*_set_exception_ports()`. | 27 //! `*_set_exception_ports()`. |
28 //! | 28 //! |
29 //! The same generic interface can be used to operate on host, task, and thread | 29 //! The same generic interface can be used to operate on host, task, and thread |
30 //! exception ports. The “get” interface is superior to the system’s native | 30 //! exception ports. The “get” interface is superior to the system’s native |
31 //! interface because it keeps related data about a single exception handler | 31 //! interface because it keeps related data about a single exception handler |
32 //! together in one struct, rather than separating it into four parallel arrays. | 32 //! together in one struct, rather than separating it into four parallel arrays. |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 // even with a TASK_NULL target_port, because it is incorrect to deallocate | 209 // even with a TASK_NULL target_port, because it is incorrect to deallocate |
210 // the result of mach_task_self(). | 210 // the result of mach_task_self(). |
211 bool dealloc_target_port_; | 211 bool dealloc_target_port_; |
212 | 212 |
213 DISALLOW_COPY_AND_ASSIGN(ExceptionPorts); | 213 DISALLOW_COPY_AND_ASSIGN(ExceptionPorts); |
214 }; | 214 }; |
215 | 215 |
216 } // namespace crashpad | 216 } // namespace crashpad |
217 | 217 |
218 #endif // CRASHPAD_UTIL_MACH_EXCEPTION_PORTS_H_ | 218 #endif // CRASHPAD_UTIL_MACH_EXCEPTION_PORTS_H_ |
OLD | NEW |