At least some clarity; I nailed down my crash (after considerable amounts of baffled looks and cursing).<br><br>This is refering to the latest version of the Mini as well as the latest, greatest, ASIO enabled, version of pure ChucK, both on XP.
<br><br>Let&#39;s first establish that while expensive if actually used, the following is fine;<br>------------------<br>SndBuf array[110];<br><br>-----------------------<br><br>now considder this;<br>----------------------------------
<br>// I picked this 10 at random, for length 5 it&#39;ll crash too<br>Foo x[10];<br><br>class Foo<br>&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp; // at length 10 it&#39;ll run but this will crash(!!??)<br>&nbsp;&nbsp;&nbsp; SndBuf array[11];<br>&nbsp;&nbsp;&nbsp; }<br>--------------------------------
<br><br>So; we seem to be having a issue with maximal array sizes for arrays of Ugens within classes. I tried but there is no issue with manually going;<br>--------------<br>class Foo<br>
&nbsp;&nbsp;&nbsp; {<br>
&nbsp;&nbsp;&nbsp; SndBuf a;<br>

&nbsp;&nbsp;&nbsp; SndBuf b;<br>&nbsp;&nbsp;&nbsp; SndBuf c;<br>etc, etc, etc<br>
&nbsp;&nbsp;&nbsp; }<br>
--------------------------<br>At least not up to and incuding 12 buffers after which I was bored with defining them. <br><br>I&#39;m 99% certain this also solves the &quot;kilo-shred-crashing&quot; issue I reported a while ago.
<br><br>This isn&#39;t likely to affect many people because we *are* talking about exceptionally large amounts of Ugens but it&#39;s very hard to work around. One solution is to simply spork functions that define the class instances instead of defining them in a array (this works) but while this allows you to conveniently define CPU clogging amounts of Ugens it doesnt enable you to easily adress them after the functions were sporked so with the current state of ChucK that gives you a whole lot of 
garbage.I also tried to see wether this was just SndBuf but using Gain instead also crashes so I think it&#39;s safe to asume all other Ugens will too.<br><br>Yours,<br>Kas.<br>