WIP FPC-III support
[linux/fpc-iii.git] / tools / memory-model / litmus-tests / R+fencembonceonces.litmus
blobaf9463b39b4a5daacd517d7e552f49ac963f1206
1 C R+fencembonceonces
3 (*
4  * Result: Never
5  *
6  * This is the fully ordered (via smp_mb()) version of one of the classic
7  * counterintuitive litmus tests that illustrates the effects of store
8  * propagation delays.  Note that weakening either of the barriers would
9  * cause the resulting test to be allowed.
10  *)
13         int x;
14         int y;
17 P0(int *x, int *y)
19         WRITE_ONCE(*x, 1);
20         smp_mb();
21         WRITE_ONCE(*y, 1);
24 P1(int *x, int *y)
26         int r0;
28         WRITE_ONCE(*y, 2);
29         smp_mb();
30         r0 = READ_ONCE(*x);
33 exists (y=2 /\ 1:r0=0)