3
votes
Logging/monitoring all function calls from an application
Hi,
Logging function entries/exits is a low-level approach to your problem. I would suggest using automatic debugger instrumentation (using Debugger key under Image File Execution Options with …
9
votes
Starting to learn Windbg
There's a few excellent blogs out there that help to gain windbg proficiency on an everyday basis:
Dr. Debugalov
…
0
votes
How to get a full call stack in Visual Studio 2005?
Or, optionally (assuming that Visual Studio is not installed), grab a copy of Windows Debugging Tools, ins …
4
votes
What is your favourite Windbg tip/trick?
Following command:
dpp esp Range
comes very handy when looking on stack for C++ objects with vtables, especially when working with release builds when qui …
0
votes
Call Stack at Runtime
You should consider setting your unhandled exception filter and writing a minidump file from within it. It is not …
0
votes
How do I change the locations of source files in a symbols file (pdb)
It is certainly possible, as On Freund has already pointed out.
But if it is only so that the sources can be located and loaded during debugging, then a better way would be to set the source path c …
2
votes
Program only crashes as release build — how to debug?
Once i had a problem when app behaved similarily to yours. It turned out to be a nasty buffer overrun in sprintf. Naturally, it worked when run with a debugger attached. What i did, was to insta …
0
votes
Retain Windows Error Reporting Dumps from Hung Application
You could opt for an automatic solution. I believe there're multiple options at your disposal for detecting if you're hung.
One would be the use of SendMessageTimeout (also pay attention to S …
1
vote
What is the best resource for learning the features and benefits of windbg?
Check DumpAnalysis.org out.
…
1
vote
VC++ 6.0 access violation when run in debugger
The easiest of approaches (provided that your application is not using memory too extensively) is to enable full page heap check (which will place so called guard page after the memory page your al …
0
votes
How do I go about diagnosing memory corruption errors occurring in a COM-DLL after porting it from Delphi 2007 to Delphi 2009?
I'd look in direction of full pageheap support built into the system.
Look in this post …
3
votes
How can I guarantee catching a EXCEPTION_STACK_OVERFLOW structured exception in C++ under Visual Studio 2005?
Everything prior to windows xp would not (or would be harder) generally be able to trap stack overflows. With the advent of xp, you can set …
0
votes
Debugging a crash after exiting? (After main returned)
what does the stack trace look like? can you provide an example (just strip everything sensitive w/o sacrifying the vital information)?
…
1
vote
WinDbg symbol resolution
It does not matter where you put private symbol files as long as you're able to tell the debugger where they're.
The warning you're seeing does not have any effect on the stack trace, but …
2
votes
IDebugSymbols::GetNameByOffset and overloaded functions
Quote from dbgeng.h:
// A symbol name may not be unique, particularly
// when overloaded functions exist which all
// have the same name. If GetOffsetByName
// finds mul …
