Tagged Questions

3
votes
4answers
78 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 …
3
votes
0answers
65 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 …
3
votes
3answers
143 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 g …
0
votes
4answers
247 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++ …
2
votes
1answer
122 views

Accessing Python Objects in a Core Dump

Is there anyway to discover the python value of a PyObject* from a corefile in gdb
1
vote
1answer
176 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 …
11
votes
6answers
756 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 ?
0
votes
1answer
162 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 faultin …