Linux 5.7.7
[linux/fpc-iii.git] / tools / memory-model / litmus-tests / LB+poacquireonce+pooncerelease.litmus
blob07b9904b0e49f058f8b0f7505078ffb213aa5a6c
1 C LB+poacquireonce+pooncerelease
3 (*
4  * Result: Never
5  *
6  * Does a release-acquire pair suffice for the load-buffering litmus
7  * test, where each process reads from one of two variables then writes
8  * to the other?
9  *)
13 P0(int *x, int *y)
15         int r0;
17         r0 = READ_ONCE(*x);
18         smp_store_release(y, 1);
21 P1(int *x, int *y)
23         int r0;
25         r0 = smp_load_acquire(y);
26         WRITE_ONCE(*x, 1);
29 exists (0:r0=1 /\ 1:r0=1)