Expand description
Synchronization primitives for asynchronous contexts.
Re-exports§
pub use portable_atomic;
Modules§
- arbiter
- A Mutex-like FIFO with unlimited-waiter for embedded systems.
- channel
- An async aware MPSC channel that can be used on no-alloc systems.
- signal
- A “latest only” value store with unlimited writers and async waiting.
Macros§
- make_
channel - Creates a split channel with
'static
lifetime. - make_
signal - Creates a split signal with
'static
lifetime.