Any way to make Windbg to break when a specific value is assigned to the eax
register? I know one of the functions in my program is returning an specific error, it would be very fast to find the guilty this way.
相关问题
- Analyzing Outlook HANG dump (with GoogleCalendarSy
- How to debug static dependency loading problems?
- windbg dump command fails with error 0x8007012b
- Determining which method is holding a ReaderWriter
- Crash dump with unknown origin
相关文章
- Is my heap fragmented
- Specifying a command line for Windbg's Open Ex
- CDB command for setting a breakpoint based on a li
- Finding which function allocated a heap based on a
- Is 0x0000ffff the default load count of a dll in w
- sos.dll usage in visual studio 2013
- Debug a .NET dump using windbg
- Are there any WinDBG replacements with a better GU
You can set a breakpoint on all your suspect functions and then check the
eax
register value like so:See conditional breakpoints and also pseudo-register syntax for available register values