[sc-users] SC causes computer to crash

James Harkins jamshark70 at gmail.com
Fri Feb 1 07:21:22 PST 2008


Can you isolate which of the routines causes the hang?

Most likely you have a Routine that is yielding 0 infinitely as the
wait time. SystemClock has realtime priority so it can easily
monopolize the computer. Maybe, for testing, substitute AppClock?
Musical timing won't be accurate, but that's OK for testing b/c we
just want to find out who the culprit is.

BTW, this construction is a bit redundant:

SystemClock.sched(x, { Routine({ ... }).play });

You can schedule the routine directly on the clock.

SystemClock.sched(x, Routine({ ... }));

hjh


On Feb 1, 2008 10:10 AM, stwbass <stwbass at gmail.com> wrote:
> I've attached the file that does it. Please be careful because it has
> crashed my computer twice.



-- 
James Harkins /// dewdrop world
jamshark70 at dewdrop-world.net
http://www.dewdrop-world.net

"Come said the Muse,
Sing me a song no poet has yet chanted,
Sing me the universal."  -- Whitman


More information about the sc-users mailing list