vote up 0 vote down star

I have a crash dump and I suspect GDI leaks to be a cause of the crash

From the full crash dump is there anyway to find out the number of GDI handles used by my process when it crashed?

regards G

flag

20% accept rate
!handles will list all handles in the dump, but I don't think it includes the GDI ones, only the ones listed at msdn.microsoft.com/en-us/library/…. – Remus Rusanu Oct 26 at 20:01

2 Answers

vote up 1 vote down

It is unlikely since the only debugger extension gdikdx.dll tailored at gdi tasks is not actively maintained since the w2k version and i believe they stopped shipping it since not that many folks are into hacking into gdi internals - according to someone's statement i stumbled upon in a newsgroup - therefore it is no longer invested into. You're left with only a few options all of which are unfortunately about runtime troubleshooting.

You could start with a tool like nirsoft's GDIView to monitor the use of GDI resources from your app and then progress to any of the runtime instrumentation options:

P.S. could you be more specific on the actual reason of your particular crash?

link|flag
vote up 0 vote down

Tess talks about a similar situation, perhaps this will give you a lead...

http://blogs.msdn.com/tess/archive/2009/02/03/net-memory-leak-to-dispose-or-not-to-dispose-that-s-the-1-gb-question.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.