<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Finding Memory Leaks In Silverlight With WinDbg</title>
	<atom:link href="http://davybrion.com/blog/2009/08/finding-memory-leaks-in-silverlight-with-windbg/feed/" rel="self" type="application/rss+xml" />
	<link>http://davybrion.com/blog/2009/08/finding-memory-leaks-in-silverlight-with-windbg/</link>
	<description>Trying to walk that thin line between intelligence and ignorance</description>
	<lastBuildDate>Mon, 15 Mar 2010 08:03:58 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Davy Brion</title>
		<link>http://davybrion.com/blog/2009/08/finding-memory-leaks-in-silverlight-with-windbg/comment-page-1/#comment-23306</link>
		<dc:creator>Davy Brion</dc:creator>
		<pubDate>Wed, 23 Dec 2009 12:19:57 +0000</pubDate>
		<guid isPermaLink="false">http://davybrion.com/blog/?p=1496#comment-23306</guid>
		<description>@Dewy

try the last couple of steps mentioned in this post:
http://blogs.msdn.com/delay/archive/2009/03/11/where-s-your-leak-at-using-windbg-sos-and-gcroot-to-diagnose-a-net-memory-leak.aspx

i&#039;ve used that a couple of times, sometimes it worked but sometimes it didn&#039;t.  doesn&#039;t hurt to try though :)</description>
		<content:encoded><![CDATA[<p>@Dewy</p>
<p>try the last couple of steps mentioned in this post:<br />
<a href="http://blogs.msdn.com/delay/archive/2009/03/11/where-s-your-leak-at-using-windbg-sos-and-gcroot-to-diagnose-a-net-memory-leak.aspx" rel="nofollow">http://blogs.msdn.com/delay/archive/2009/03/11/where-s-your-leak-at-using-windbg-sos-and-gcroot-to-diagnose-a-net-memory-leak.aspx</a></p>
<p>i&#8217;ve used that a couple of times, sometimes it worked but sometimes it didn&#8217;t.  doesn&#8217;t hurt to try though <img src='http://davybrion.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dewy</title>
		<link>http://davybrion.com/blog/2009/08/finding-memory-leaks-in-silverlight-with-windbg/comment-page-1/#comment-23304</link>
		<dc:creator>Dewy</dc:creator>
		<pubDate>Wed, 23 Dec 2009 10:05:54 +0000</pubDate>
		<guid isPermaLink="false">http://davybrion.com/blog/?p=1496#comment-23304</guid>
		<description>Hi Davy,

This information is definatly pointing me in the right direction but I am getting what you had at the end of your demo:
0:032&gt; !gcroot -nostacks 07a45abc
DOMAIN(06BF2C98):HANDLE(Pinned):64312f8:Root:  089e4260(System.Object[])-&gt;
  079e5e38(System.Collections.Generic.List`1[[System.Object, mscorlib]])-&gt;
  07a4ad64(System.Object[])-&gt;
  07a45abc(BombDrop.Bomb)

For each of the objects that I have I expect them to be free. I take it from the word (Pinned) that something still has a handle to this object. 
Do you know how to find out exactly who the who is?

Regards
Dewy</description>
		<content:encoded><![CDATA[<p>Hi Davy,</p>
<p>This information is definatly pointing me in the right direction but I am getting what you had at the end of your demo:<br />
0:032&gt; !gcroot -nostacks 07a45abc<br />
DOMAIN(06BF2C98):HANDLE(Pinned):64312f8:Root:  089e4260(System.Object[])-&gt;<br />
  079e5e38(System.Collections.Generic.List`1[[System.Object, mscorlib]])-&gt;<br />
  07a4ad64(System.Object[])-&gt;<br />
  07a45abc(BombDrop.Bomb)</p>
<p>For each of the objects that I have I expect them to be free. I take it from the word (Pinned) that something still has a handle to this object.<br />
Do you know how to find out exactly who the who is?</p>
<p>Regards<br />
Dewy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy Likness' Blog : A Weak Post</title>
		<link>http://davybrion.com/blog/2009/08/finding-memory-leaks-in-silverlight-with-windbg/comment-page-1/#comment-22870</link>
		<dc:creator>Jeremy Likness' Blog : A Weak Post</dc:creator>
		<pubDate>Mon, 02 Nov 2009 21:53:41 +0000</pubDate>
		<guid isPermaLink="false">http://davybrion.com/blog/?p=1496#comment-22870</guid>
		<description>[...] Of course, I&#039;ve left out the implemenation of fetching this, but you get the point. While that is an interesting example, how about a more practical one? One of the most common causes of memory leaks in Silverlight/WPF applications is related to the registering and unregistering of events. To learn more about this memory leak (and also learn how to troubleshoot/debug/and find the source of the leak), read this article about finding memory leaks in Silverlight. [...]</description>
		<content:encoded><![CDATA[<p>[...] Of course, I&#39;ve left out the implemenation of fetching this, but you get the point. While that is an interesting example, how about a more practical one? One of the most common causes of memory leaks in Silverlight/WPF applications is related to the registering and unregistering of events. To learn more about this memory leak (and also learn how to troubleshoot/debug/and find the source of the leak), read this article about finding memory leaks in Silverlight. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bootcat</title>
		<link>http://davybrion.com/blog/2009/08/finding-memory-leaks-in-silverlight-with-windbg/comment-page-1/#comment-22516</link>
		<dc:creator>bootcat</dc:creator>
		<pubDate>Tue, 08 Sep 2009 14:46:23 +0000</pubDate>
		<guid isPermaLink="false">http://davybrion.com/blog/?p=1496#comment-22516</guid>
		<description>hello ,
thats a great article with a cool example. 
you have paved a way to lots of bubbling debug amatuers like me . 

please keep your good work going . 
thank you . 

BooTCaT,
working for verizon</description>
		<content:encoded><![CDATA[<p>hello ,<br />
thats a great article with a cool example.<br />
you have paved a way to lots of bubbling debug amatuers like me . </p>
<p>please keep your good work going .<br />
thank you . </p>
<p>BooTCaT,<br />
working for verizon</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reflective Perspective - Chris Alcock &#187; The Morning Brew #408</title>
		<link>http://davybrion.com/blog/2009/08/finding-memory-leaks-in-silverlight-with-windbg/comment-page-1/#comment-22269</link>
		<dc:creator>Reflective Perspective - Chris Alcock &#187; The Morning Brew #408</dc:creator>
		<pubDate>Mon, 10 Aug 2009 07:40:42 +0000</pubDate>
		<guid isPermaLink="false">http://davybrion.com/blog/?p=1496#comment-22269</guid>
		<description>[...] Finding Memory Leaks In Silverlight With WinDbg - Davy Brion shows how you can use WinDbg to identify memory leaks in your Silverlight Applications by attaching the debugger to your browser instance [...]</description>
		<content:encoded><![CDATA[<p>[...] Finding Memory Leaks In Silverlight With WinDbg &#8211; Davy Brion shows how you can use WinDbg to identify memory leaks in your Silverlight Applications by attaching the debugger to your browser instance [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ANaimi</title>
		<link>http://davybrion.com/blog/2009/08/finding-memory-leaks-in-silverlight-with-windbg/comment-page-1/#comment-22268</link>
		<dc:creator>ANaimi</dc:creator>
		<pubDate>Mon, 10 Aug 2009 04:58:26 +0000</pubDate>
		<guid isPermaLink="false">http://davybrion.com/blog/?p=1496#comment-22268</guid>
		<description>Very informative! I guess I have a lot to debug.</description>
		<content:encoded><![CDATA[<p>Very informative! I guess I have a lot to debug.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Interesting Finds: 2009 08.04 ~ 08.10 - gOODiDEA.NET</title>
		<link>http://davybrion.com/blog/2009/08/finding-memory-leaks-in-silverlight-with-windbg/comment-page-1/#comment-22267</link>
		<dc:creator>Interesting Finds: 2009 08.04 ~ 08.10 - gOODiDEA.NET</dc:creator>
		<pubDate>Mon, 10 Aug 2009 00:37:39 +0000</pubDate>
		<guid isPermaLink="false">http://davybrion.com/blog/?p=1496#comment-22267</guid>
		<description>[...] Finding Memory Leaks In Silverlight With WinDbg   Published Sunday, August 09, 2009 8:37 PM by gOODiDEA Filed under: SQLServer, WinDbg, Utility, Performance, Memory Leak, Silverlight, Tips [...]</description>
		<content:encoded><![CDATA[<p>[...] Finding Memory Leaks In Silverlight With WinDbg   Published Sunday, August 09, 2009 8:37 PM by gOODiDEA Filed under: SQLServer, WinDbg, Utility, Performance, Memory Leak, Silverlight, Tips [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kulveer</title>
		<link>http://davybrion.com/blog/2009/08/finding-memory-leaks-in-silverlight-with-windbg/comment-page-1/#comment-22266</link>
		<dc:creator>Kulveer</dc:creator>
		<pubDate>Sun, 09 Aug 2009 23:02:17 +0000</pubDate>
		<guid isPermaLink="false">http://davybrion.com/blog/?p=1496#comment-22266</guid>
		<description>Thats so helpful. I am looking forward to see more articles.

http://aspnetcsharp4.blogspot.com/

Thanks 
Kulveer</description>
		<content:encoded><![CDATA[<p>Thats so helpful. I am looking forward to see more articles.</p>
<p><a href="http://aspnetcsharp4.blogspot.com/" rel="nofollow">http://aspnetcsharp4.blogspot.com/</a></p>
<p>Thanks<br />
Kulveer</p>
]]></content:encoded>
	</item>
</channel>
</rss>
