aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/memory-model/litmus-tests/R+mbonceonces.litmus
blob: e69b9e3e9436dbfb39557661899033e0c61bee87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
C R+mbonceonces

{}

P0(int *x, int *y)
{
	WRITE_ONCE(*x, 1);
	smp_mb();
	WRITE_ONCE(*y, 1);
}

P1(int *x, int *y)
{
	int r0;

	WRITE_ONCE(*y, 2);
	smp_mb();
	r0 = READ_ONCE(*x);
}

exists (y=2 /\ 1:r0=0)