Hi Neal,<div><br></div><div>The code is not using tail recursion, but my test code is allocating and deallocating large structures about 20 times before the crash.</div><div><br></div><div>I am limiting memory for DrRacket to 1GB (the system has 3GB).  DrRacket was using about 800MB the last time I checked before the crash.  Note that it doesn&#39;t give me the out of memory message.  When I hit Run, DrRacket doesn&#39;t give back memory to the OS, but that is no surprise.</div>
<div><br></div><div>I know that this is not a very complete bug report.  I just put it out there in case someone else is seeing something similar and maybe together we can characterize the issue better.</div><div><br></div>
<div>Thanks,</div><div>-Joe<br><br><div class="gmail_quote">On Mon, Feb 20, 2012 at 10:09 PM, Neil Van Dyke <span dir="ltr">&lt;<a href="mailto:neil@neilvandyke.org">neil@neilvandyke.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Windows is very much running out of RAM, and is pounding swap?<br>
<br>
Were you able to look at the process sizes, so you know roughly how much virtual memory DrRacket was using, and whether any other processes were using lots of virtual memory?<br>
<br>
It could be that DrRacket was using a huge amount of virtual memory, or it could be that some other process was, but you were noticing it in DrRacket because a GC cycle was leading to thrashing.<br>
<br>
If DrRacket is indeed using a huge amount of memory, you might take a look at the code you were running in DrRacket, and whether all the memory usage of that code is necessary.  One of the first things to look at is whether you&#39;re using tail calls everywhere you can in recursion-intensive parts of the code.<br>

<br>
Also, I actually disable swap on Linux and Windows workstations I set up -- any process of mine that doesn&#39;t fit in RAM is dead to me.  My workstations are 5 year-old laptops with 2-3 GB of RAM each, and so far that has been more than enough RAM.<span class="HOEnZb"><font color="#888888"><br>

<br>
-- <br>
<a href="http://www.neilvandyke.org/" target="_blank">http://www.neilvandyke.org/</a><br>
</font></span></blockquote></div><br></div>