hot questions tagged postmortem-debugging - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T08:16:56Z http://stackoverflow.com/feeds/tag?tagnames=postmortem-debugging&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1521289/how-to-debug-a-wer-minidump-of-an-ngened-image 4 How to debug a WER minidump of an "ngen"ed image Edward Brey 2009-10-05T17:15:33Z 2009-12-05T09:47:21Z <p>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.?</p> <p>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.</p> <p>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:</p> <blockquote> <p>kernel32.dll!RaiseException() + 0x3d bytes<br /> mscorwks.dll!RaiseTheExceptionInternalOnly() + 0x295 bytes<br /> mscorwks.dll!JIT_Throw() + 0x130 bytes<br /> MyApp.ni.exe!000007feee74c84c()<br /> [Frames below may be incorrect and/or missing, no symbols loaded for MyApp.ni.exe]<br /> 0000000070000d5e()<br /> MyApp.ni.exe!000007feee611000()<br /> 000000000300bf78()<br /> 000000000300bf60() </p> </blockquote> <p>The Modules window indicates that symbols are loaded for the OS and .NET DLLs, but for the application modules, I get this:</p> <blockquote> <p>MyApp.exe -> No native symbols in symbol file.<br /> MyApp.ni.exe -> No matching binary found.<br /> MyAppsLibrary.ni.dll -> No matching binary found. </p> </blockquote> http://stackoverflow.com/questions/1610283/step-execution-of-release-code-post-mortem-debugging-vs-c 3 Step execution of release code / post-mortem debugging (VS/C++) tomash 2009-10-22T22:10:43Z 2009-10-23T13:47:51Z <p>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) values for some others, so it's all quite misleading.</p> <p>I'm asking this question, because loading WinDbg crashdump file into Visual Studio brings the same stack and variables partial view as step-execution. Are there any way to improve crashdump analyze experience, except recompiling application without optimalizations?</p> <p>Windows, Visual Studio 2005, unmanaged C++</p> http://stackoverflow.com/questions/1367110/cross-platform-crash-handler 2 cross platform crash handler Thomi 2009-09-02T11:23:32Z 2009-09-06T09:44:20Z <p>I'm looking for a cross-platform crash handler. <a href="http://code.google.com/p/google-breakpad/" rel="nofollow">Google breakpad</a> looks promising, but it sorely lacking any documentation, and requires a reasonable amount of fiddling to actually get going.</p> <p>Can anyone suggest a better alternative? All I need is the ability to reliably record crash dumps, stack traces, and CPU information at the time of a crash. Alternatively, does anyone have any experience using google breakpad? Has it been great or horrible? </p> http://stackoverflow.com/questions/1080832/accessing-python-objects-in-a-core-dump 2 Accessing Python Objects in a Core Dump Ed L 2009-07-03T21:07:30Z 2009-07-03T21:18:06Z <p>Is there anyway to discover the python value of a PyObject* from a corefile in gdb</p> http://stackoverflow.com/questions/733948/help-postmorten-debugging-of-a-mixed-mode-win32-application 0 Help postmorten debugging of a mixed mode Win32 application John 2009-04-09T12:09:29Z 2009-08-12T09:03:35Z <p>Here's the situation:</p> <p><strong>Background</strong></p> <p>I have a mixed mode .NET/Native application developed in Visual Studio 2008. </p> <p>What I mean by mixed mode is that the front end is written in C++ .NET which calls into a native C++ library. The native code does the bulk of the work in the app, including kicking off new threads as it requires. The .NET code is just for UI purposes (win forms).</p> <p>I have a release build of application running on a tester's computer.</p> <p>The native libraries were compiled with full optimisations but also with debugging enabled (the "Debug Information Format" was set to "Program Database").</p> <p>What this means is that I have the debugging symbols for the application in a PDB file.</p> <p><strong>The problem</strong></p> <p>So anyway, one of the testers is having a problem with the app where it occasionally crashes on XP. I've been able to get the minidump of the crash using Dr Watson for several runs.</p> <p>When I debug into it (using the minidump - I'm not actually debugging the real app), all the debugging symbols are loaded correctly: I can see the full stack trace of all of the native threads correctly. Other threads (which are presumably the .NET threads) don't have a stack trace, but they all at least show me which dll the thread was started on (i.e. ntdll.dll).</p> <p>It correctly reports the thread which fails ("Unhandled exception at 0x0563d652 in user(5).dmp: 0xC0000005: Access violation reading location 0x00000000).</p> <p>However when I go into the thread it shows nothing useful. In the stack trace there is a single entry which just has the memory address "0563d652()" (not even "ntldll.dll").</p> <p>When I go into dissasembly it just shows a random section of about 30 instructions. Either side of the memory address is just "???". It almost looks like it is not part of my source code (isn't your binary loaded sequentially into memory? is it normal to have a random set of assembly statements in the middle of nowhere?).</p> <p><strong>My questions</strong></p> <p>So basically my questions are threfold.</p> <p>1) Can anyone explain the debugger's lack of information?</p> <p>2) Bearing in mind, I can't show the error occurred in my code, can anyone suggest a reason for the failure</p> <p>3) Can I do anything else to help me diagnose this current problem in the future?</p> <p>Help!</p> <p>John</p> <p><strong>Update:</strong></p> <p>Here is the stack dump for the failing thread from WinDBG</p> <pre><code> # ChildEBP RetAddr WARNING: Frame IP not in any known module. Following frames may be wrong. 00 099bf414 02d0e7fc 0x563d652 01 00000000 00000000 0x2d0e7fc </code></pre> <p>Weird huh? Doesn't even show a DLL.</p> <p>Is it possible that I've corrupted the stack/heap somehow which has caused a thread to just get corrupted...?</p> http://stackoverflow.com/questions/48148/tool-for-analyzing-net-app-memory-dumps 11 Tool for analyzing .Net app memory dumps Gulzar 2008-09-07T04:39:17Z 2009-01-31T21:11:00Z <p>Can somebody suggest a good <strong>free</strong> tool for analyzing .Net memory dumps other than Adplus/windbg/sos ?</p> http://stackoverflow.com/questions/569145/including-windbg-in-the-vsjitdebugger-list 1 Including WinDbg in the vsjitdebugger list VoidPointer 2009-02-20T11:05:08Z 2009-04-12T12:51:49Z <p>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?</p> <p>Ideally I would like to be able to include a few more command-lines to the list of choices in vsjitdebugger that are available when a process encounters an unhandled exception: using DrWatson or using WinDbg to save a minidump for later inspection.</p> http://stackoverflow.com/questions/428493/configuring-application-verifier-to-generate-a-full-memory-dmp-file 0 Configuring Application Verifier to generate a full-memory .DMP file? Roger Lipscombe 2009-01-09T15:30:21Z 2009-01-14T11:49:01Z <p>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 lot of globals). How do I configure App Verifier (or Windows) to give me a full dump file?</p>