aboutsummaryrefslogtreecommitdiff
path: root/src/processor/stackwalk_common.cc
diff options
context:
space:
mode:
authorLei Zhang <thestig@google.com>2016-02-10 13:11:20 -0800
committerLei Zhang <thestig@google.com>2016-02-10 13:11:20 -0800
commita8f79b0fde64dc7e3d3e189d5a8c5c45a13f37c8 (patch)
tree03938e4fd947a5c19801285494dd43c87d889164 /src/processor/stackwalk_common.cc
parentChange MDCVInfoELF into something usable. (diff)
downloadbreakpad-a8f79b0fde64dc7e3d3e189d5a8c5c45a13f37c8.tar.xz
Revert "Added a switch to dump minidump modules in minidump_stackwalk."
This reverts commit cb936a0243c97ae9cd2d4bb19d95dde0421fed6d. A=dyen@chromium.org Original Review: https://codereview.chromium.org/1672773002/ R=dyen@chromium.org Review URL: https://codereview.chromium.org/1688493003 .
Diffstat (limited to 'src/processor/stackwalk_common.cc')
-rw-r--r--src/processor/stackwalk_common.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/processor/stackwalk_common.cc b/src/processor/stackwalk_common.cc
index f5cf4802..20734fe0 100644
--- a/src/processor/stackwalk_common.cc
+++ b/src/processor/stackwalk_common.cc
@@ -926,13 +926,4 @@ void PrintProcessStateMachineReadable(const ProcessState& process_state) {
}
}
-void PrintProcessModules(const ProcessState& process_state) {
- const CodeModules* modules = process_state.modules();
- 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