Crate pinned_sync[][src]

Expand description

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

Structs

A barrier enables multiple threads to synchronize the beginning of some computation.

A BarrierWaitResult is returned by Barrier::wait() when all threads in the Barrier have rendezvoused.

A Condition Variable

A mutual exclusion primitive useful for protecting shared data

A reader-writer lock

A type indicating whether a timed wait on a condition variable returned due to a time out or not.