rts-alloc 4.0.0

Shared memory allocator intended for small frequent allocations
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[allow(unused_imports)]
#[cfg(feature = "shuttle")]
pub(crate) use shuttle::sync::atomic::{
    AtomicU16, AtomicU32, AtomicU64, AtomicU8, AtomicUsize, Ordering,
};

#[allow(unused_imports)]
#[cfg(not(feature = "shuttle"))]
pub(crate) use core::sync::atomic::{
    AtomicU16, AtomicU32, AtomicU64, AtomicU8, AtomicUsize, Ordering,
};