Module sync
Available on crate feature threading only.
Expand description
Synchronization primitives.
- Channel
- Blocking channel for sending data between threads.
- Event
- An
Event, allowing to notify multiple threads that some event has happened. - Lock
- A basic locking object.
- Mutex
- A basic mutex with priority inheritance.
- MutexGuard
- Grants access to the
Mutex inner data.