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

Unified Diff: src/tools/linux/core2md/core2md.cc

Issue 1624002: Add flags to control the amount of information written to Linux minidump files
Patch Set: Build against the latest code and address all review issues. Add a way to control the maximum threa… Created 9 years, 4 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 | « src/client/linux/minidump_writer/minidump_writer_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/tools/linux/core2md/core2md.cc
===================================================================
--- src/tools/linux/core2md/core2md.cc (revision 1401)
+++ src/tools/linux/core2md/core2md.cc (working copy)
@@ -49,8 +49,9 @@
MappingList mappings;
AppMemoryList memory_list;
LinuxCoreDumper dumper(0, core_path, procfs_override);
- return google_breakpad::WriteMinidump(filename, mappings, memory_list,
- &dumper);
+ google_breakpad::ContentFlags flags = google_breakpad::DUMP_ALL;
+ return google_breakpad::WriteMinidump(filename, flags, -1, mappings,
+ memory_list, &dumper);
}
int main(int argc, char *argv[]) {
« no previous file with comments | « src/client/linux/minidump_writer/minidump_writer_unittest.cc ('k') | no next file » | no next file with comments »

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