From cc38e56fdf49445fa7af00246a414d778747e6c9 Mon Sep 17 00:00:00 2001 From: "mstarzinger@chromium.org" Date: Tue, 19 Mar 2013 14:57:42 +0000 Subject: [PATCH] Disable grokdumps module decoding temporarily. R=yangguo@chromium.org Review URL: https://codereview.chromium.org/12755031 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@13989 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- tools/grokdump.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/tools/grokdump.py b/tools/grokdump.py index 2fbe3b4..7daad21 100755 --- a/tools/grokdump.py +++ b/tools/grokdump.py @@ -2085,13 +2085,14 @@ def AnalyzeMinidump(options, minidump_name): else: print " eflags: %s" % bin(reader.exception_context.eflags)[2:] - print - print " modules:" - for module in reader.module_list.modules: - name = GetModuleName(reader, module) - if name in KNOWN_MODULES: - print " %s at %08X" % (name, module.base_of_image) - reader.TryLoadSymbolsFor(name, module) + # TODO(mstarzinger): Disabled because broken, needs investigation. + #print + #print " modules:" + #for module in reader.module_list.modules: + # name = GetModuleName(reader, module) + # if name in KNOWN_MODULES: + # print " %s at %08X" % (name, module.base_of_image) + # reader.TryLoadSymbolsFor(name, module) print stack_top = reader.ExceptionSP() -- 2.7.4