Rob;<br><br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>
One might think that the while(true) shred woke up *before* _e got triggered, but Apple isn&#39;t yet building computers with tachyon technology. </blockquote><div><br>I fear the exact same happens on the battered old AMD build here and running Linux. I&#39;m really quit sure I didn&#39;t put anything expensive, rare or exotic in here.<br>
 </div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> Can someone tell me what&#39;s really going on???  Failing that, know any doctors who will prescribe a selective serotonin reuptake inhibitor to keep me from tearing my hair out?<br>

</blockquote><div><br>This is quite clearly wrong, the two times should be the same. Something has gone wrong in the Shreduler; I&#39;ve been suspecting there have been changes to the shreduler since the last version as some of the execution order in my sequencer has gone very odd indeed, needing a extra ms of advanced time just to get the shreds to execute in the right order but the cause of this has eluded me. I&#39;m going to test this with some older versions of ChucK, in the meantime; I&#39;ll past my edits to your code below, I edited it slightly, removing one  un-nesicary yield and adding a extra printed line to have ChucK compare the times instead of me, the point to that is to get rid of rounding errors caused by printed values being truncated after six digits after the decimal point and because I&#39;m lazy.<br>
<br>This, to put it bluntly, looks very bad and very wrong; seroteine uptake inhibitors take way too long to get going, let&#39;s form a hunting party. Get the nets, the pitch-forks and war drums and let&#39;s catch this bug! ;¬)<br>
<br>Yours,<br>Kas.<br><br>==============pasted code below==============<br><br>Event _e;<br>time _t;<br>time foo;<br><br>spork ~ beatProcess();<br><br>while (true) {<br>   now + 1.001::second =&gt; _t;<br>   _e =&gt; now;<br>
   if (foo &gt; now) &lt;&lt;&lt;&quot;bang&quot;&gt;&gt;&gt;;<br>   now =&gt; foo;<br>   <br>   &lt;&lt;&lt; &quot;returned from _e =&gt; now at&quot;, now &gt;&gt;&gt;;<br>}<br><br>fun void beatProcess() {<br>   while (true) {<br>
       _t =&gt; now;<br>       if (foo &gt; now) &lt;&lt;&lt;&quot;bang&quot;&gt;&gt;&gt;;<br>       now =&gt; foo;<br>       &lt;&lt;&lt; &quot;broadcasting at&quot;, now &gt;&gt;&gt;;<br>       _e.broadcast();<br>   }<br>
}<br></div></div><br><br>