This seems resolved, but I feel a desire to throw in my own answer for this question anyway:<br><br>Q: if two threads try to change the same variable at the same time ("rounded" to the nearest sample), what is the expected behavior of the program?<br>
<br>A: Two shreds will never try to change a particular variable at the same time, because two shreds can't run at the same time. If one shred is running it will not allow any other shred to do anything unless it says so, by issuing a wait statement (e.g. 1::ms => now) or yield.<br>
<br>One effect of this rule is that if a shred changes the value of global variable x, it can count on x staying as it is until it either changes x again or issues a wait statement. So there's no need to worry about the kind of complicated structures you usually have to set up with threading in other languages, like monitors and other synchronization stuff.<br>
<br><br><div class="gmail_quote">On Wed, Aug 1, 2012 at 2:19 PM, Kassen <span dir="ltr"><<a href="mailto:signal.automatique@gmail.com" target="_blank">signal.automatique@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On 01/08/2012, John Gamboa <<a href="mailto:vaulttech@gmail.com">vaulttech@gmail.com</a>> wrote:<br>
> Hello again...<br>
><br>
Hey John,<br>
<div class="im"><br>
> Sorry for asking "foolishness": reading the Thesis I think I found the<br>
> answer.<br>
<br>
</div>It's not "foolish", it's a important question, at the core of ChucK's<br>
structure. It's easy to miss the "formal" answer, because the behaviour it<br>
leads to is quite natural most of the time and makes it "just work". Let's<br>
Have a look.<br>
<div class="im"><br>
><br>
> (The answer, in case I wasn't alone -- please, correct me if I am wrong):<br>
> It seems that there will just be one shred that will "win" (i.e., that will<br>
> be the last one shreduled by the shreduler and thus the last one to change<br>
> the variable). It seemed that the shreduler simply doesn't care with this<br>
> case: it has a list of waiting-to-be-shreduled shreds and it shreds them<br>
> blindly until the end. I was also surprised that it also only has as "time<br>
> information" the number of samples passed since the beginning of the<br>
> program (I didn't know: I was very curious about how Chuck does its<br>
> "strongly timed magic").<br>
><br>
<br>
</div>Yes, that is correct. Only one shred runs at a time and our syntax specifies<br>
in what way they take turns. All the above is correct, but it seems to imply<br>
that if shred A and shred b are "shreduled" to run at the same time T then<br>
we just get whatever. That is not true; if shred A was handed to the shreduler<br>
first then it will also run first, in your particular case that will mean<br>
that shred B gets to set the variable. Whether doing that in such a way is<br>
smart is another question, of course. When no shreds are computing the UGen-<br>
Graph gets to use the CPU.<br>
<br>
This leads to some interesting things. You may have noted that "dur" and<br>
"time" are double-floats (like many things in ChucK), making us able to<br>
reason about time spans considerably shorter than the period between two clock<br>
pulses of your CPU. That sounds silly, until we realise that we are really<br>
talking about the order in which stuff runs, not the moment at which it does.<br>
<br>
So; ChucK's execution order is (or should be...) deterministic at all times<br>
and better yet; with some care in writing it will also be easily predictable<br>
to you.<br>
<div class="im"><br>
<br>
><br>
> Anyway... very nice! I am really excited about the language lately \o/<br>
<br>
</div>Great! Have fun, share results and tricks, report bugs :-)<br>
<br>
Yours,<br>
Kas.<br>
_______________________________________________<br>
chuck-users mailing list<br>
<a href="mailto:chuck-users@lists.cs.princeton.edu">chuck-users@lists.cs.princeton.edu</a><br>
<a href="https://lists.cs.princeton.edu/mailman/listinfo/chuck-users" target="_blank">https://lists.cs.princeton.edu/mailman/listinfo/chuck-users</a><br>
</blockquote></div><br><br clear="all"><br>-- <br>Release me, insect, or I will destroy the Cosmos!<br>