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_ |