Linux 5.7.7
[linux/fpc-iii.git] / tools / memory-model / litmus-tests / MP+poonceonces.litmus
blob172f0145301c563b7e92eac992ddf73662cf9714
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  *)
12 P0(int *x, int *y)
14         WRITE_ONCE(*x, 1);
15         WRITE_ONCE(*y, 1);
18 P1(int *x, int *y)
20         int r0;
21         int r1;
23         r0 = READ_ONCE(*y);
24         r1 = READ_ONCE(*x);
27 exists (1:r0=1 /\ 1:r1=0)