vote up 3 vote down star
2

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, etc.?

Here's some background related to the question: We have a .NET app that gets ngened at installation. When it crashes due to an unhandled .NET exception, the crash is bucketted in Windows Error Reporting, and from that I was able to download the minidump.mdmp file from winqual.microsoft.com.

I put minidump.mdmp in a folder containing the .dbg files for the build of the app that crashed, and double-clicked minidump.mdmp to open it in a new instance of VS2008 SP1. My stack trace looks like this:

kernel32.dll!RaiseException() + 0x3d bytes
mscorwks.dll!RaiseTheExceptionInternalOnly() + 0x295 bytes
mscorwks.dll!JIT_Throw() + 0x130 bytes
MyApp.ni.exe!000007feee74c84c()
[Frames below may be incorrect and/or missing, no symbols loaded for MyApp.ni.exe]
0000000070000d5e()
MyApp.ni.exe!000007feee611000()
000000000300bf78()
000000000300bf60()

The Modules window indicates that symbols are loaded for the OS and .NET DLLs, but for the application modules, I get this:

MyApp.exe -> No native symbols in symbol file.
MyApp.ni.exe -> No matching binary found.
MyAppsLibrary.ni.dll -> No matching binary found.

flag
Maybe a stupid question, did you compile your app with DEBUG defined so it would create the .pdb files? – scope-creep Oct 5 at 22:21
This question from Stack Overflow may be of interest. stackoverflow.com/questions/850617/… – scope-creep Oct 5 at 22:26
And this is a Geting Started section for crash debugging. microsoft.com/whdc/devtools/… microsoft.com/whdc/devtools/… – scope-creep Oct 5 at 22:27
The application is built using a Release configuration and DEBUG is not defined; however, the Release configuration is set to output pdb files (the "pdb-only" setting) and I have the pdb files. I've used this approach to successfully debug Win32 native apps before, but this is my first attempt at a ngened .NET app. – Edward Brey Oct 7 at 16:59
Thanks too, scope-creep, for the links. Unfortunately, the stackoverflow link just covers getting the crash dump. I have the crash dump, but don't know how to use it. The "Debugging Tools and Symbols" is a bit scary since its support list includes native apps, but it doesn't mention managed apps. :-( – Edward Brey Oct 7 at 17:03

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.