tools/memory-model/litmus-tests/CoRW+poonceonce+Once.litmus

Source file repositories/reference/linux-study-clean/tools/memory-model/litmus-tests/CoRW+poonceonce+Once.litmus

File Facts

System
Linux kernel
Corpus path
tools/memory-model/litmus-tests/CoRW+poonceonce+Once.litmus
Extension
.litmus
Size
324 bytes
Lines
26
Domain
Support Tooling And Documentation
Bucket
tools
Inferred role
Support Tooling And Documentation: tools
Status
atlas-only

Why This File Exists

Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.

Dependency Surface

Detected Declarations

Annotated Snippet

C CoRW+poonceonce+Once

(*
 * Result: Never
 *
 * Test of read-write coherence, that is, whether or not a read from
 * a given variable and a later write to that same variable are ordered.
 *)

{}

P0(int *x)
{
	int r0;

	r0 = READ_ONCE(*x);
	WRITE_ONCE(*x, 1);
}

P1(int *x)
{
	WRITE_ONCE(*x, 2);
}

exists (x=2 /\ 0:r0=2)

Annotation

Implementation Notes