todc-mem 0.1.0

Algorithms for shared-memory distributed systems.
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(feature = "shuttle")]
pub(crate) use shuttle::sync::{
    atomic::{AtomicBool, AtomicU64, Ordering},
    Mutex,
};
#[cfg(not(feature = "shuttle"))]
pub(crate) use std::sync::{
    atomic::{AtomicBool, AtomicU64, Ordering},
    Mutex,
};