From 06cede988b4d15b4d6b7e759fda676bfe3455682 Mon Sep 17 00:00:00 2001 From: "ted.mielczarek" Date: Fri, 11 Nov 2011 19:05:51 +0000 Subject: Allow CrashGenerationClient to request that a dump of the parent process be written. A=Jim Mathies R=ted at https://bugzilla.mozilla.org/show_bug.cgi?id=679238 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@883 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/client/windows/common/ipc_protocol.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/client/windows/common/ipc_protocol.h') diff --git a/src/client/windows/common/ipc_protocol.h b/src/client/windows/common/ipc_protocol.h index 7d101d38..10a84d58 100644 --- a/src/client/windows/common/ipc_protocol.h +++ b/src/client/windows/common/ipc_protocol.h @@ -110,6 +110,7 @@ struct ProtocolMessage { custom_client_info(), dump_request_handle(NULL), dump_generated_handle(NULL), + parent_dump_request_handle(NULL), server_alive_handle(NULL) { } @@ -122,6 +123,7 @@ struct ProtocolMessage { MDRawAssertionInfo* arg_assert_info, const CustomClientInfo& custom_info, HANDLE arg_dump_request_handle, + HANDLE arg_parent_dump_request_handle, HANDLE arg_dump_generated_handle, HANDLE arg_server_alive) : tag(arg_tag), @@ -132,6 +134,7 @@ struct ProtocolMessage { assert_info(arg_assert_info), custom_client_info(custom_info), dump_request_handle(arg_dump_request_handle), + parent_dump_request_handle(arg_parent_dump_request_handle), dump_generated_handle(arg_dump_generated_handle), server_alive_handle(arg_server_alive) { } @@ -161,6 +164,9 @@ struct ProtocolMessage { // Handle to signal the crash event. HANDLE dump_request_handle; + // Handle to signal a request for a server side minidump. + HANDLE parent_dump_request_handle; + // Handle to check if server is done generating crash. HANDLE dump_generated_handle; -- cgit v1.2.1