I have a program that is leaking USER objects which can be seen in Task Manager. Is there a way to determine which type of resource is being leaked? I've used programs like GDI View for GDI leaks which breaks it down by object type. Is there anything similar to this for USER objects?

link|improve this question

It would be helpful to specify the Windows version you want to use to track them down. Windows 7, for one, comes with some built-in tools that can help. I personally prefer using AQTime as a profiler, which has those "leak detection" capabilities. – STATUS_ACCESS_DENIED Mar 18 '11 at 17:06
I am running Windows 7. What built-in tools should I look for? – Ryand Mar 18 '11 at 17:18
I was thinking along the lines of Application Verifier, but my memory failed me that one has it only for heap issues. ETW (Event Tracing for Windows) may be a suitable route, though. Sorry for the confusion. – STATUS_ACCESS_DENIED Mar 18 '11 at 17:40
USER objects are windows and menus. Fairly unusual to leak them so tooling isn't that readily available. Spy++ shows you the windows. – Hans Passant Mar 21 '11 at 4:55
feedback

1 Answer

up vote 0 down vote accepted

There's a debugger called windbg. It can do these sorts of things but the learning curve is staggering.

link|improve this answer
I've used WinDgb before, but I would have no idea how to track something like this. – Ryand Mar 18 '11 at 15:58
I found the leaktrap plugin for windbg to be what I needed. http://code.google.com/p/leaktrap/ My leak turned out to be menu objects. – Ryand Mar 23 '11 at 13:36
feedback

Your Answer

 
or
required, but never shown

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