<?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: The future of automatic memory management</title>
	<atom:link href="http://blog.reverberate.org/2008/04/09/the-future-of-automatic-memory-management/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.reverberate.org/2008/04/09/the-future-of-automatic-memory-management/</link>
	<description>parsing, performance, minimalism with C99</description>
	<lastBuildDate>Mon, 06 Feb 2012 23:44:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Sho</title>
		<link>http://blog.reverberate.org/2008/04/09/the-future-of-automatic-memory-management/comment-page-1/#comment-939</link>
		<dc:creator>Sho</dc:creator>
		<pubDate>Mon, 09 Jun 2008 22:12:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.reverberate.org/2008/04/09/the-future-of-automatic-memory-management/#comment-939</guid>
		<description>I believe that Mac OS X has garbage collection that runs in its own thread starting with OS X 1.5.</description>
		<content:encoded><![CDATA[<p>I believe that Mac OS X has garbage collection that runs in its own thread starting with OS X 1.5.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Carrino</title>
		<link>http://blog.reverberate.org/2008/04/09/the-future-of-automatic-memory-management/comment-page-1/#comment-897</link>
		<dc:creator>John Carrino</dc:creator>
		<pubDate>Wed, 16 Apr 2008 22:39:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.reverberate.org/2008/04/09/the-future-of-automatic-memory-management/#comment-897</guid>
		<description>Sun has a version of java that has Real-Time characteristics.  James Gosling spoke about this and was pretty excited about it when he came and visited Palantir. 

&lt;a href=&quot;http://java.sun.com/javase/technologies/realtime/faq.jsp#32&quot; rel=&quot;nofollow&quot;&gt;real time java faq&lt;/a&gt;

&lt;a href=&quot;http://java.sun.com/javase/technologies/realtime/reference/doc/release/JavaRTSGarbageCollection.html&quot; rel=&quot;nofollow&quot;&gt;java  RT GC guide&lt;/a&gt;


Parallel garbage collection isn&#039;t really new and there is a &quot;low-pause&quot; collector for modern versions of java. 


&lt;a href=&quot;http://java.sun.com/docs/hotspot/gc5.0/gc_tuning_5.html#0.0.0. When to Use the Concurrent Low Pause Collector&#124;outline&quot; rel=&quot;nofollow&quot;&gt;5.0 gc tuning&lt;/a&gt;


It&#039;s true, I&#039;m officially a java programmer now :(</description>
		<content:encoded><![CDATA[<p>Sun has a version of java that has Real-Time characteristics.  James Gosling spoke about this and was pretty excited about it when he came and visited Palantir. </p>
<p><a href="http://java.sun.com/javase/technologies/realtime/faq.jsp#32" rel="nofollow">real time java faq</a></p>
<p><a href="http://java.sun.com/javase/technologies/realtime/reference/doc/release/JavaRTSGarbageCollection.html" rel="nofollow">java  RT GC guide</a></p>
<p>Parallel garbage collection isn&#8217;t really new and there is a &#8220;low-pause&#8221; collector for modern versions of java. </p>
<p><a href="http://java.sun.com/docs/hotspot/gc5.0/gc_tuning_5.html#0.0.0. When to Use the Concurrent Low Pause Collector|outline" rel="nofollow">5.0 gc tuning</a></p>
<p>It&#8217;s true, I&#8217;m officially a java programmer now <img src='http://blog.reverberate.org/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: josh</title>
		<link>http://blog.reverberate.org/2008/04/09/the-future-of-automatic-memory-management/comment-page-1/#comment-886</link>
		<dc:creator>josh</dc:creator>
		<pubDate>Thu, 10 Apr 2008 16:29:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.reverberate.org/2008/04/09/the-future-of-automatic-memory-management/#comment-886</guid>
		<description>Thanks for the reference Dave.  Cliff points out that JITing should also happen in a separate thread -- this seems like an obvious corollary.</description>
		<content:encoded><![CDATA[<p>Thanks for the reference Dave.  Cliff points out that JITing should also happen in a separate thread &#8212; this seems like an obvious corollary.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://blog.reverberate.org/2008/04/09/the-future-of-automatic-memory-management/comment-page-1/#comment-885</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Thu, 10 Apr 2008 04:01:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.reverberate.org/2008/04/09/the-future-of-automatic-memory-management/#comment-885</guid>
		<description>
Cliff Click just had a post about this (and other multi-core) issue and he seems to agree: http://blogs.azulsystems.com/cliff/2008/04/we-dont-know-ho.html


I personally agree, even though I&#039;m currently programming well outside of the GCed world right now.  The sheer volume of cores that we have coming down the various product pipelines is going to be hard to keep up with and I think we&#039;ll see more of these &quot;dedicated core&quot; tasks as the core count exceeds the parallelism of most code.


I think that the software industry is behind the eight ball on this one.  Writing parallel software that is correct is challenging yet usually manageable.  Writing parallel software that is correct _and scales as the core count_ is very difficult.
</description>
		<content:encoded><![CDATA[<p>Cliff Click just had a post about this (and other multi-core) issue and he seems to agree: <a href="http://blogs.azulsystems.com/cliff/2008/04/we-dont-know-ho.html" rel="nofollow">http://blogs.azulsystems.com/cliff/2008/04/we-dont-know-ho.html</a></p>
<p>I personally agree, even though I&#8217;m currently programming well outside of the GCed world right now.  The sheer volume of cores that we have coming down the various product pipelines is going to be hard to keep up with and I think we&#8217;ll see more of these &quot;dedicated core&quot; tasks as the core count exceeds the parallelism of most code.</p>
<p>I think that the software industry is behind the eight ball on this one.  Writing parallel software that is correct is challenging yet usually manageable.  Writing parallel software that is correct _and scales as the core count_ is very difficult.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

