Using WinDBG, you'll want to type the ".ecxr" command to load the
exception context before asking for a stack trace. By default, WinDBG
will show you the stack from the context where the dump was written,
which is just inside the exception handler thread, as you can see.
(Each thread in the minidump has an associated context which contains
CPU state. There's also an exception record that contains its own
context, capturing the state of the faulting thread at the time of the
exception.)
-Ted
Hi Pradyumna,
When you produced the symbol files, you should have generated a
directory tree containing all of the symbol files. When you run
minidump_stackwalk, you should pass that directory as the second
parameter, as described here:
http://code.google.com/p/google-breakpad/wiki/LinuxStarterGuide#Processing_the_minidump_to_produce_a_stack_trace
Does your symbol directory have a directory named "genexbd.159"?
Regards,
-Ted