mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2025-12-27 17:55:29 +01:00
Speculative back-out of r883, which may have broken Windows crash reporting.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@891 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
29138814cc
commit
06c856fd67
13 changed files with 4 additions and 208 deletions
|
|
@ -704,12 +704,6 @@ bool ExceptionHandler::WriteMinidump(const wstring &dump_path,
|
|||
return handler.WriteMinidump();
|
||||
}
|
||||
|
||||
bool ExceptionHandler::RequestMinidumpForParent() {
|
||||
if (!IsOutOfProcess())
|
||||
return false;
|
||||
return crash_generation_client_->RequestParentDump();
|
||||
}
|
||||
|
||||
bool ExceptionHandler::WriteMinidumpWithException(
|
||||
DWORD requesting_thread_id,
|
||||
EXCEPTION_POINTERS* exinfo,
|
||||
|
|
|
|||
|
|
@ -190,12 +190,6 @@ class ExceptionHandler {
|
|||
static bool WriteMinidump(const wstring &dump_path,
|
||||
MinidumpCallback callback, void* callback_context);
|
||||
|
||||
// Requests a minidump of the server be generated and waits for completion.
|
||||
// This can be used to capture the execution state of parent process
|
||||
// independent of a crash on either side of the connection. Only valid for
|
||||
// out-of-process clients.
|
||||
bool RequestMinidumpForParent();
|
||||
|
||||
// Get the thread ID of the thread requesting the dump (either the exception
|
||||
// thread or any other thread that called WriteMinidump directly). This
|
||||
// may be useful if you want to include additional thread state in your
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue