[][src]Module ari::sync

Structs

AtomicArBool

an atomic boolean that always uses acquire and release semantics.

AtomicRelaxedBool

an atomic boolean that uses relaxed semantics.

AutoResetEvent

a thread waits for a signal by calling waitone on the autoresetevent. if the autoresetevent is in the non-signaled state, the thread blocks, waiting for the thread that currently controls the resource to signal that the resource is available by calling set.

ManualResetEvent

manualresetevent allows threads to communicate with each other by signaling. typically, this communication concerns a task which one thread must complete before other threads can proceed.

Traits

ResetEvent