Thanks Olivier, this is clear.
From: Olivier Tardieu
To: LEONID ILYEVSKY ; Mailing list for users of the
X10 programming language
Sent: Tuesday, April 30, 2013 10:58 AM
Subject: Re: [X10-users] Clocked async question
Hi,
There are really 3 activities
ge.net>
> Date: 04/30/2013 10:46 AM
> Subject: [X10-users] Clocked async question
>
> I am looking at the example from the language spec (section15.4):
>
> clocked finish {
> clocked async {
> phase("A", 1);
> Clock.advanceAll();
> phase(&quo
I am looking at the example from the language spec (section15.4):
clocked finish {
clocked async {
phase("A", 1);
Clock.advanceAll();
phase("A", 2);
}
clocked async {
phase("B", 1);
Clock.advanceAll();
phase("B", 2);
}
}
As far as I understand, this is going to wor