Tagged Questions

0
votes
0answers
26 views

WinDbg stacktrace shows wrong values for function arguments (KP command)

I am debugging a minidump in WinDbg and the Visual Studio 2005 debugger and they produce different results. WinDbg gets it wrong When doing KP in WinDbg, the relevant part of the stacktrace is: …
7
votes
4answers
183 views

How to debug a WER minidump of an “ngen”ed image

When ngen is executed on a .NET managed application at installation time, and a crash dump is retrieved from Windows Error Reporting for the app, how can you use it to see a stack trace, variables, …
3
votes
4answers
102 views

Step execution of release code / post-mortem debugging (VS/C++)

Is there any sense to step-execute release code? I noticed that some lines of code are omitted, i.e. some method calls. Also variable preview doesn't show some variables and shows invalid (not real) …
2
votes
3answers
161 views

cross platform crash handler

I'm looking for a cross-platform crash handler. Google breakpad looks promising, but it sorely lacking any documentation, and requires a reasonable amount of fiddling to actually get going. Can …
2
votes
1answer
147 views

Accessing Python Objects in a Core Dump

Is there anyway to discover the python value of a PyObject* from a corefile in gdb
0
votes
4answers
271 views

Help postmorten debugging of a mixed mode Win32 application

Here's the situation: Background I have a mixed mode .NET/Native application developed in Visual Studio 2008. What I mean by mixed mode is that the front end is written in C++ .NET which calls …
11
votes
6answers
810 views

Tool for analyzing .Net app memory dumps

Can somebody suggest a good free tool for analyzing .Net memory dumps other than Adplus/windbg/sos ?
1
vote
1answer
188 views

Including WinDbg in the vsjitdebugger list

Is it possible to include WinDbg in the list of debuggers shown by vsjitdebugger when the latter is configured as the default debuuger in HKLM...\AeDebug? Ideally I would like to be able to include a …
0
votes
1answer
170 views

Configuring Application Verifier to generate a full-memory .DMP file?

Under AppVerifier, one of our apps blows up. I get a DMP file, but it's a minidump. Specifically, while I've got the call stack, I'd also like the user-space memory for the faulting process (it uses a …