vote up 3 vote down star
2

Is it possible to have a look at all .net objects which are collected upon calling GC.Collect()?

I need to see what objects are still in memory and not reclaimed, so I can find where reclaiming the objects should have done manual, but was forgotten by the programmer.
I don't want to call GC.Collect because someone somewhere forgot to dispose an object which blocks some handles.

flag

70% accept rate
"should have [collected]" is an odd phrase with GC – sixlettervariables Feb 17 at 14:42
I hear people say that all the time! Dev says "it's out of scope, why isn't it collected?" with the assumption that GC will automagically do everything. While it's an amazing piece of work, it's not perfect. The more you know the GC, the more you know you can leak memory if you're not careful. – joshua.ewer Feb 17 at 14:48
"should have ..." was not refering to GC, but to manual disposing of the object - sorry for confusing language use! – Sam Feb 17 at 14:50
FxCop can help determine if a code ignores IDisposable on a given type. – sixlettervariables Feb 17 at 15:34

2 Answers

vote up 4 vote down

I've found the best way to do this is to use windbg and the SOS (son of strike) extension. It has a rather cryptic command line but it is very powerful. It has the capability to dump the heap and divide it by the GC generational heap. Once you get past the initial learning curve, it's very easy to track what objects are alive in what portion of the heap. Here are a few web sites with examples of using SOS

EDIT OP asked about the location of sos.dll. It is included with the install of the .Net Framework. It is located at

%WINDIR%\Microsoft.Net\Framework\V2.0.50727\sos.dll

But once you have windbg loaded you don't need the full path. Just us the .loadby method.

.loadby sos mscorwks.dll

It will look for the version of sos in the same directory as the current version of mscorwks (the CLR)

link|flag
+1 for link to Tess Ferrandez's blog – Richard Szalay Feb 17 at 14:46
@Richard, a very good blog indeed – JaredPar Feb 17 at 14:49
Sounds great, now I just need to find somewhere to get SOS from... – Sam Feb 17 at 15:05
@Sam, will edit post with location – JaredPar Feb 17 at 15:08
I can't load sos.dll - does this not work with managed (mixed) c++? – Sam Feb 17 at 15:21
show 13 more comments
vote up 1 vote down

I use SciTech's Memory profiler. It's a bit complicated to use off the bat, but there are some good instructional videos. It'll let you look at which objects aren't disposed properly, in which generation they were collected. Couldn't debug memory leaks without it...

link|flag

Your Answer

Get an OpenID
or

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