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 <errno.h> | 15 #include <errno.h> |
16 #include <getopt.h> | 16 #include <getopt.h> |
17 #include <libgen.h> | 17 #include <libgen.h> |
18 #include <mach/mach.h> | 18 #include <mach/mach.h> |
19 #include <stdio.h> | 19 #include <stdio.h> |
20 #include <stdlib.h> | 20 #include <stdlib.h> |
21 #include <string.h> | 21 #include <string.h> |
| 22 #include <sys/types.h> |
22 #include <unistd.h> | 23 #include <unistd.h> |
23 | 24 |
24 #include <string> | 25 #include <string> |
25 #include <vector> | 26 #include <vector> |
26 | 27 |
27 #include "base/basictypes.h" | |
28 #include "base/mac/mach_logging.h" | 28 #include "base/mac/mach_logging.h" |
29 #include "base/mac/scoped_mach_port.h" | 29 #include "base/mac/scoped_mach_port.h" |
| 30 #include "base/macros.h" |
30 #include "base/strings/stringprintf.h" | 31 #include "base/strings/stringprintf.h" |
31 #include "tools/tool_support.h" | 32 #include "tools/tool_support.h" |
32 #include "util/mach/exception_ports.h" | 33 #include "util/mach/exception_ports.h" |
33 #include "util/mach/mach_extensions.h" | 34 #include "util/mach/mach_extensions.h" |
34 #include "util/mach/symbolic_constants_mach.h" | 35 #include "util/mach/symbolic_constants_mach.h" |
35 #include "util/mach/task_for_pid.h" | 36 #include "util/mach/task_for_pid.h" |
36 #include "util/posix/drop_privileges.h" | 37 #include "util/posix/drop_privileges.h" |
37 #include "util/stdlib/string_number_conversion.h" | 38 #include "util/stdlib/string_number_conversion.h" |
38 | 39 |
39 namespace crashpad { | 40 namespace crashpad { |
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 | 583 |
583 return kExitSuccess; | 584 return kExitSuccess; |
584 } | 585 } |
585 | 586 |
586 } // namespace | 587 } // namespace |
587 } // namespace crashpad | 588 } // namespace crashpad |
588 | 589 |
589 int main(int argc, char* argv[]) { | 590 int main(int argc, char* argv[]) { |
590 return crashpad::ExceptionPortToolMain(argc, argv); | 591 return crashpad::ExceptionPortToolMain(argc, argv); |
591 } | 592 } |
OLD | NEW |