Tagged Questions

11
votes
6answers
771 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 ?
4
votes
1answer
72 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
89 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
153 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
135 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
180 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
4answers
258 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 …
0
votes
1answer
164 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 …