OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "components/crash/app/breakpad_win.h" | 5 #include "components/crash/app/breakpad_win.h" |
6 | 6 |
7 #include <windows.h> | 7 #include <windows.h> |
8 #include <shellapi.h> | 8 #include <shellapi.h> |
9 #include <tchar.h> | 9 #include <tchar.h> |
10 #include <userenv.h> | 10 #include <userenv.h> |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 | 87 |
88 const wchar_t kGoogleUpdatePipeName[] = L"\\\\.\\pipe\\GoogleCrashServices\\"; | 88 const wchar_t kGoogleUpdatePipeName[] = L"\\\\.\\pipe\\GoogleCrashServices\\"; |
89 const wchar_t kChromePipeName[] = L"\\\\.\\pipe\\ChromeCrashServices"; | 89 const wchar_t kChromePipeName[] = L"\\\\.\\pipe\\ChromeCrashServices"; |
90 | 90 |
91 // This is the well known SID for the system principal. | 91 // This is the well known SID for the system principal. |
92 const wchar_t kSystemPrincipalSid[] =L"S-1-5-18"; | 92 const wchar_t kSystemPrincipalSid[] =L"S-1-5-18"; |
93 | 93 |
94 google_breakpad::ExceptionHandler* g_breakpad = NULL; | 94 google_breakpad::ExceptionHandler* g_breakpad = NULL; |
95 google_breakpad::ExceptionHandler* g_dumphandler_no_crash = NULL; | 95 google_breakpad::ExceptionHandler* g_dumphandler_no_crash = NULL; |
96 | 96 |
| 97 #if !defined(_WIN64) |
97 EXCEPTION_POINTERS g_surrogate_exception_pointers = {0}; | 98 EXCEPTION_POINTERS g_surrogate_exception_pointers = {0}; |
98 EXCEPTION_RECORD g_surrogate_exception_record = {0}; | 99 EXCEPTION_RECORD g_surrogate_exception_record = {0}; |
99 CONTEXT g_surrogate_context = {0}; | 100 CONTEXT g_surrogate_context = {0}; |
| 101 #endif // !defined(_WIN64) |
100 | 102 |
101 typedef NTSTATUS (WINAPI* NtTerminateProcessPtr)(HANDLE ProcessHandle, | 103 typedef NTSTATUS (WINAPI* NtTerminateProcessPtr)(HANDLE ProcessHandle, |
102 NTSTATUS ExitStatus); | 104 NTSTATUS ExitStatus); |
103 char* g_real_terminate_process_stub = NULL; | 105 char* g_real_terminate_process_stub = NULL; |
104 | 106 |
105 } // namespace | 107 } // namespace |
106 | 108 |
107 // Dumps the current process memory. | 109 // Dumps the current process memory. |
108 extern "C" void __declspec(dllexport) __cdecl DumpProcess() { | 110 extern "C" void __declspec(dllexport) __cdecl DumpProcess() { |
109 if (g_breakpad) { | 111 if (g_breakpad) { |
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
732 extern "C" void __declspec(dllexport) __cdecl | 734 extern "C" void __declspec(dllexport) __cdecl |
733 UnregisterNonABICompliantCodeRange(void* start) { | 735 UnregisterNonABICompliantCodeRange(void* start) { |
734 ExceptionHandlerRecord* record = | 736 ExceptionHandlerRecord* record = |
735 reinterpret_cast<ExceptionHandlerRecord*>(start); | 737 reinterpret_cast<ExceptionHandlerRecord*>(start); |
736 | 738 |
737 CHECK(RtlDeleteFunctionTable(&record->runtime_function)); | 739 CHECK(RtlDeleteFunctionTable(&record->runtime_function)); |
738 } | 740 } |
739 #endif | 741 #endif |
740 | 742 |
741 } // namespace breakpad | 743 } // namespace breakpad |
OLD | NEW |