Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(82)

Unified Diff: src/client/linux/dump_writer_common/mapping_info.h

Issue 5754002: Introduce microdump writer class. (Closed) Base URL: http://google-breakpad.googlecode.com/svn/trunk
Patch Set: Introduce internal mode for minidump_descriptor Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Makefile.in ('k') | src/client/linux/handler/exception_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/client/linux/dump_writer_common/mapping_info.h
diff --git a/src/client/linux/dump_writer_common/mapping_info.h b/src/client/linux/dump_writer_common/mapping_info.h
index c206b504d89324186f98b8ace1fa4d614728ab7d..5f247cfd4e7b24d6b5eb59e0bcbd5dd0f4e26aac 100644
--- a/src/client/linux/dump_writer_common/mapping_info.h
+++ b/src/client/linux/dump_writer_common/mapping_info.h
@@ -30,8 +30,12 @@
#ifndef CLIENT_LINUX_DUMP_WRITER_COMMON_MAPPING_INFO_H_
#define CLIENT_LINUX_DUMP_WRITER_COMMON_MAPPING_INFO_H_
+#include <limits.h>
+#include <list>
#include <stdint.h>
+#include "google_breakpad/common/minidump_format.h"
+
namespace google_breakpad {
// One of these is produced for each mapping in the process (i.e. line in
@@ -44,6 +48,14 @@ struct MappingInfo {
char name[NAME_MAX];
};
+struct MappingEntry {
+ MappingInfo first;
+ uint8_t second[sizeof(MDGUID)];
+};
+
+// A list of <MappingInfo, GUID>
+typedef std::list<MappingEntry> MappingList;
+
} // namespace google_breakpad
#endif // CLIENT_LINUX_DUMP_WRITER_COMMON_MAPPING_INFO_H_
« no previous file with comments | « Makefile.in ('k') | src/client/linux/handler/exception_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld 1004:630ec63f810e-tainted