Index: src/processor/stackwalk_common.cc |
diff --git a/src/processor/stackwalk_common.cc b/src/processor/stackwalk_common.cc |
index dd529fdbdf872bc2aab338a14f2549e90da522e6..780ba224c9d386e4f6104f77f116859d2fcd6708 100644 |
--- a/src/processor/stackwalk_common.cc |
+++ b/src/processor/stackwalk_common.cc |
@@ -926,4 +926,13 @@ void PrintProcessStateMachineReadable(const ProcessState& process_state) { |
} |
} |
+void PrintProcessModules(const ProcessState& process_state) { |
+ const CodeModules *modules = process_state.modules(); |
Lei Zhang
2016/01/29 20:27:37
nit: CodeModules*, and line 933 too.
David Yen
2016/01/29 20:36:26
I was following the coding style in the rest of th
Lei Zhang
2016/01/29 21:31:57
Yes, please change it.
David Yen
2016/01/29 21:35:43
Done.
|
+ const unsigned int module_count = modules->module_count(); |
+ for (unsigned int i = 0; i < module_count; ++i) { |
+ const CodeModule *module = modules->GetModuleAtSequence(i); |
+ printf("%s\n", module->code_file().c_str()); |
+ } |
+} |
+ |
} // namespace google_breakpad |