Crate pinned_sync

Source
Expand description

This is a proof-of-concept crate for pinned-sync RFC.

Structsยง

Barrier
A barrier enables multiple threads to synchronize the beginning of some computation.
BarrierWaitResult
A BarrierWaitResult is returned by Barrier::wait() when all threads in the Barrier have rendezvoused.
Condvar
A Condition Variable
Mutex
A mutual exclusion primitive useful for protecting shared data
MutexGuard
RwLock
A reader-writer lock
RwLockReadGuard
RwLockWriteGuard
WaitTimeoutResult
A type indicating whether a timed wait on a condition variable returned due to a time out or not.