atomic_once_cell
atomic_once_cell provides two new types, [AtomicOnceCell] and
[AtomicLazy], which are thread-safe and mostly lock-free drop-in
replacements of [core::lazy::OnceCell] and [core::lazy::Lazy]
suitable for use in #[no_std] environments.
Blocking
Because dereferencing [AtomicLazy] can't fail, it can't be
lock-free (if you know a way, please tell me).
Both types can be used in a non-blocking way, but there are some
blocking calls that should not be used from interrupt handlers or
other contexts where blocking will lead to a deadlock. Blocking is
based on
crossbeam::utils::Backoff,
and will be reduced to a spinlock in #[no_std] environments.
Examples
AtomicOnceCell
use AtomicOnceCell;
static CELL: = new;
AtomicLazy
use AtomicLazy;
static LAZY: = new;
For more details, see docs.
Usage
Add this to your Cargo.toml:
[]
= "0.2.0"
License
MPL-2.0