8
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
…
3
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 …
1
vote
Debugging C++ STL containers in Windbg
You might also want to give this debugger extension a try. It is a library called SDbgExt, developed by …
2
votes
Finding GDI/User resource usage from a crash dump
I've spent the last week working on a GDI leak finder tool. We also perform regular stress testing and it never lasted longer than a day's worth w/o stopping due to user/gdi object handle overco …
1
vote
What is the best resource for learning the features and benefits of windbg?
Check DumpAnalysis.org out.
…
0
votes
How do I find the handle owner from a hang dump using windbg?
You can dig that out of a kernel dump.
Now, as far as kernel debugging goes, livekd from sysinternals should be sufficient but unfortunately it is only usable on a running system.
There's als …
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 …
0
votes
WinDbg — TraceListener and Saturated ThreadPool
The fact that offset into these functions seem way to big (mscorwks!ReOpenMetaDataWithMemory+0x1ff59), I'll say you don't have symbols for mscorwks.
Set a local symbol store using:
…
0
votes
Adding WinDbg to the “Open With” menu for .DMP files?
i have a simple batch file associated with .dmp extension. it's defined roughly as following:
@echo off
title windbg -z %1
start d:\programs\windbg\windbg.exe -W my_fav_workspace -z %1
…
4
votes
How can you change an age-mismatched PDB to match properly?
the windbg will not modify pdb's age - it only looks it up to match that of executable - the compiler does when it (re)generates executable and debug files.
now, based on the debuginfo.com artic …
2
votes
Help catching StackOverflowException with WinDbg and ADPlus
<ADPlus>
<!-- Add log entry, log faulting thread stack and dump full on first chance StackOverflow -->
<Exceptions>
<Config>
<!-- This is for the stack …
0
votes
windbg disassemble function command (uf) need some formatting
because function code is potentially dispersed all over your code section (up to the linker to decide where to put what and, generally, it ends up moving parts that are executed most to the top)
…
2
votes
How to attach to a already running process noninvasively
I believe there's nothing wrong with
DEBUG_ATTACH_NONINVASIVE|DEBUG_ATTACH_NONINVASIVE_NO_SUSPEND
combination - it is perfectly permissible and is even featured in assert sa …
2
votes
WinDbg not showing useful information
When you set the path for symbols, did you reload them?
.reload
I'm not sure your adding
srv*c:\symcache*C:\dev\Customer\MyAppSln\MyApp\Debug
to the symbol path has t …
