sdd 4.8.5

Scalable lock-free delayed memory reclaimer
Documentation
#![deny(missing_docs, warnings, clippy::all, clippy::pedantic)]
#![doc = include_str!("../README.md")]

mod atomic_owned;
pub use atomic_owned::AtomicOwned;

mod atomic_raw;
pub use atomic_raw::AtomicRaw;

mod atomic_shared;
pub use atomic_shared::AtomicShared;

pub mod bag;
pub use bag::Bag;

mod epoch;
pub use epoch::Epoch;

mod guard;
pub use guard::Guard;

mod linked_list;
pub use linked_list::{LinkedEntry, LinkedList};

mod private_collector;
pub use private_collector::PrivateCollector;

mod owned;
pub use owned::Owned;

mod ptr;
pub use ptr::Ptr;

pub mod queue;
pub use queue::Queue;

mod raw_ptr;
pub use raw_ptr::RawPtr;

mod shared;
pub use shared::Shared;

pub mod stack;
pub use stack::Stack;

mod tag;
pub use tag::Tag;

mod arena;
mod collector;
mod link;
mod ref_counted;

#[cfg(test)]
mod tests;