We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Report, in this case scide hangs when trying to stop sclang:
// stop interpreter form scide menu hangs it. f = { arg i; if(i > 0) { i.postln; f.value(i-1) }; }; f.value(1000000000);
best
The text was updated successfully, but these errors were encountered:
This also looks like stack overflow potential, just like Tim has replied about a similar issue on the mailing list...
Sorry, something went wrong.
note this doesn't needs to be recursive, that was just the code I was running, the same happens with this:
inf.do({ arg i; i.postln });
On Linux, it is possible to quit sclang when it's busy-looping. Is this only a Mac issue?
But I'm on linux. Ubuntu, Unity, 64bits. El oct 24, 2012 10:40 p.m., "Jakob Leben" notifications@github.com escribió:
On Linux, it is possible to quit sclang when it's busy-looping. Is this only a Mac issue? — Reply to this email directly or view it on GitHubhttps://github.com//issues/614#issuecomment-9763384.
— Reply to this email directly or view it on GitHubhttps://github.com//issues/614#issuecomment-9763384.
it somehow looks like a deadlock inside qt ... no idea, were ... iac, can reproduce and will investigate
190d7c2
scide: prevent UI freeze when language is posting extensively after s…
0e47b83
…top request fixes #614 Signed-off-by: Tim Blechmann <tim@klingt.org>
timblechmann
No branches or pull requests
Report, in this case scide hangs when trying to stop sclang:
// stop interpreter form scide menu hangs it.
f = { arg i; if(i > 0) { i.postln; f.value(i-1) }; };
f.value(1000000000);
best
The text was updated successfully, but these errors were encountered: