Search Results

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 …
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 way to track and lower GD handles?

I wrote a tool to track down resource leaks awhile ago. It is hosted on google code. Although it is a native library, I believe it ca …
0
votes

How to get GDI objects associated to a process

GetGuiResources API is a good starting point, and if you need frequent snapshots and know which handles of which type are actually in use, give …
1
vote

Cannot execute program if using boost (C++) libraries in debug-version on WinXP

This might turn out to have nothing to do with SxS. I suggest checking the Event Log for SxS error messages and using dependency walker to check for most probable DLL dependency issue, or one of th …
0
votes

What is the normal way to send crash reports, product registrations, etc in C++?

As far as crash reporting is concerned, there's WER for starters. It has its drawbacks (the biggest being you have …
0
votes

Use of GetGuiResources

On google code, there's a GDI/USER tracking library that can help you track handle usage. It is not user-friendly - rather quickly put …
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 …
0
votes

how to get a stack trace from dump file programatically on Windows.

you should check the windbg sdk subfolder with examples on how dbgeng.dll can be used programmatically. …
1
vote

watch a class object at memory addresss on Visual Studio

just a blind guess: try (myDLL!myClass*)(0x0012ECE0) another question, how can you be sure it is your object's address? as a side note, try the windbg - it is way simpler to look for objects …
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 …