Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / tools / memory-model / litmus-tests / MP+poonceonces.litmus
blobba9c99c6cf65dae90724503c1996935ce9e1f809
1 C MP+poonceonces
3 (*
4  * Result: Sometimes
5  *
6  * Can the counter-intuitive message-passing outcome be prevented with
7  * no ordering at all?
8  *)
12 P0(int *buf, int *flag) // Producer
14         WRITE_ONCE(*buf, 1);
15         WRITE_ONCE(*flag, 1);
18 P1(int *buf, int *flag) // Consumer
20         int r0;
21         int r1;
23         r0 = READ_ONCE(*flag);
24         r1 = READ_ONCE(*buf);
27 exists (1:r0=1 /\ 1:r1=0) (* Bad outcome. *)