todc-mem 0.1.0

Algorithms for shared-memory distributed systems.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Snapshot objects, as described by by Afek, Attiya, Dolev, Gafni, Merritt
//! and Shavit [[AAD+93]](https://dl.acm.org/doi/10.1145/153724.153741).
//!
//! # Examples
//! For examples, see the [`snapshot`](super) documentation.
mod unbounded;
pub use unbounded::UnboundedAtomicSnapshot;
pub use unbounded::UnboundedMutexSnapshot;
pub use unbounded::UnboundedSnapshot;

mod bounded;
pub use bounded::BoundedAtomicSnapshot;
pub use bounded::BoundedMutexSnapshot;
pub use bounded::BoundedSnapshot;