diff options
Diffstat (limited to 'src/client/windows/handler')
-rw-r--r-- | src/client/windows/handler/exception_handler.cc | 6 | ||||
-rw-r--r-- | src/client/windows/handler/exception_handler.h | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/client/windows/handler/exception_handler.cc b/src/client/windows/handler/exception_handler.cc index ec5397dc..fc55ca72 100644 --- a/src/client/windows/handler/exception_handler.cc +++ b/src/client/windows/handler/exception_handler.cc @@ -704,6 +704,12 @@ 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, diff --git a/src/client/windows/handler/exception_handler.h b/src/client/windows/handler/exception_handler.h index 2c2e7b76..7b2da3f3 100644 --- a/src/client/windows/handler/exception_handler.h +++ b/src/client/windows/handler/exception_handler.h @@ -190,6 +190,12 @@ 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 |