WIP FPC-III support
[linux/fpc-iii.git] / tools / memory-model / litmus-tests / MP+poonceonces.litmus
blob9f9769d647c7bb787e5ce9339ec8414541f53067
1 C MP+poonceonces
3 (*
4  * Result: Sometimes
5  *
6  * Can the counter-intuitive message-passing outcome be prevented with
7  * no ordering at all?
8  *)
11         int buf;
12         int flag;
15 P0(int *buf, int *flag) // Producer
17         WRITE_ONCE(*buf, 1);
18         WRITE_ONCE(*flag, 1);
21 P1(int *buf, int *flag) // Consumer
23         int r0;
24         int r1;
26         r0 = READ_ONCE(*flag);
27         r1 = READ_ONCE(*buf);
30 exists (1:r0=1 /\ 1:r1=0) (* Bad outcome. *)