Expand description
A Barrier
that provides wait_timeout
.
This implementation mirrors that of the Rust standard library.
Structsยง
- Barrier ๐A barrier enables multiple threads to synchronize the beginning of some computation.
- BarrierState ๐
- BarrierWaitResult ๐A
BarrierWaitResult
is returned byBarrier::wait()
when all threads in theBarrier
have rendezvoused.