| 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, |
| 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 <windows.h> | 15 #include <windows.h> |
| 16 | 16 |
| 17 #include "base/logging.h" | 17 #include "base/logging.h" |
| 18 #include "client/crashpad_client.h" | 18 #include "client/crashpad_client.h" |
| 19 #include "client/simulate_crash.h" | 19 #include "client/simulate_crash.h" |
| 20 #include "util/file/file_io.h" | 20 #include "util/file/file_io.h" |
| 21 #include "util/win/address_types.h" | 21 #include "util/win/address_types.h" |
| 22 | 22 |
| 23 namespace { |
| 24 |
| 23 __declspec(noinline) crashpad::WinVMAddress CurrentAddress() { | 25 __declspec(noinline) crashpad::WinVMAddress CurrentAddress() { |
| 24 return reinterpret_cast<crashpad::WinVMAddress>(_ReturnAddress()); | 26 return reinterpret_cast<crashpad::WinVMAddress>(_ReturnAddress()); |
| 25 } | 27 } |
| 26 | 28 |
| 27 int main(int argc, char* argv[]) { | 29 } // namespace |
| 30 |
| 31 int wmain(int argc, wchar_t* argv[]) { |
| 28 CHECK_EQ(argc, 2); | 32 CHECK_EQ(argc, 2); |
| 29 | 33 |
| 30 crashpad::CrashpadClient client; | 34 crashpad::CrashpadClient client; |
| 31 CHECK(client.SetHandler(argv[1])); | 35 CHECK(client.SetHandlerIPCPipe(argv[1])); |
| 32 CHECK(client.UseHandler()); | 36 CHECK(client.UseHandler()); |
| 33 | 37 |
| 34 HANDLE out = GetStdHandle(STD_OUTPUT_HANDLE); | 38 HANDLE out = GetStdHandle(STD_OUTPUT_HANDLE); |
| 35 PCHECK(out != INVALID_HANDLE_VALUE) << "GetStdHandle"; | 39 PCHECK(out != INVALID_HANDLE_VALUE) << "GetStdHandle"; |
| 36 crashpad::WinVMAddress current_address = CurrentAddress(); | 40 crashpad::WinVMAddress current_address = CurrentAddress(); |
| 37 crashpad::CheckedWriteFile(out, ¤t_address, sizeof(current_address)); | 41 crashpad::CheckedWriteFile(out, ¤t_address, sizeof(current_address)); |
| 38 | 42 |
| 39 CRASHPAD_SIMULATE_CRASH(); | 43 CRASHPAD_SIMULATE_CRASH(); |
| 40 | 44 |
| 41 return 0; | 45 return 0; |
| 42 } | 46 } |
| OLD | NEW |