repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
WIP FPC-III support
[linux/fpc-iii.git]
/
tools
/
memory-model
/
litmus-tests
/
CoWR+poonceonce+Once.litmus
blob
77c9cc9f8dc663652eaa0465e0d8e28ac3cff333
1
C CoWR+poonceonce+Once
2
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
*)
9
10
{
11
int x;
12
}
13
14
P0(int *x)
15
{
16
int r0;
17
18
WRITE_ONCE(*x, 1);
19
r0 = READ_ONCE(*x);
20
}
21
22
P1(int *x)
23
{
24
WRITE_ONCE(*x, 2);
25
}
26
27
exists (x=1 /\ 0:r0=2)