Merge tag 'block-5.9-2020-08-14' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / tools / memory-model / litmus-tests / CoWR+poonceonce+Once.litmus
blobbb068c92d8da27fad692b9d168875bc9c5de815c
1 C CoWR+poonceonce+Once
3 (*
4  * Result: Never
5  *
6  * Test of write-read coherence, that is, whether or not a write to a
7  * given variable and a later read from that same variable are ordered.
8  *)
12 P0(int *x)
14         int r0;
16         WRITE_ONCE(*x, 1);
17         r0 = READ_ONCE(*x);
20 P1(int *x)
22         WRITE_ONCE(*x, 2);
25 exists (x=1 /\ 0:r0=2)