nblf-queue 0.1.0

Atomic, wait-free MPMC queues based on the nblfq algorithm
Documentation
1
2
3
4
5
6
7
8
#[cfg(all(not(loom), not(shuttle)))]
mod core;
#[cfg(loom)]
mod loom;
#[cfg(shuttle)]
mod shuttle;
#[cfg(all(not(loom), not(shuttle)))]
mod test_library;