<div>Hi there,</div>
<div>&nbsp;</div>
<div>On my XP machine, running v300, the canonical module servlet:</div>
<div>&nbsp;</div>
<div>(module a-module-servlet mzscheme<br>&nbsp; (provide interface-version timeout start)<br>&nbsp; <br>&nbsp; (define interface-version 'v1)<br>&nbsp; <br>&nbsp; (define timeout +inf.0)<br>&nbsp; <br>&nbsp; ; start : request -&gt; response<br>&nbsp; (define (start initial-request)
<br>&nbsp;&nbsp;&nbsp; `(html (head (title &quot;A Test Page&quot;))<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (body ([bgcolor &quot;white&quot;])<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (p &quot;This is a simple module servlet.&quot;)))))<br>&nbsp;</div>
<div>&nbsp;</div>
<div>Causes my web-server to take 100% cpu. Changing the timeout to some large but not infinitely large number made the problem go away.</div>
<div>&nbsp;</div>
<div>-pp</div>
<div>&nbsp;</div>