oneringbuf 0.7.0

A lock-free single-producer, single-consumer (SPSC) ring buffer with in-place mutability, asynchronous support, and virtual memory optimisation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod concurrent_fib;
pub mod cons_tests;
#[cfg(all(feature = "vmem", unix))]
pub mod cons_tests_vmem;
pub mod detached_work_tests;
pub mod drop;
pub mod integration_tests;
#[cfg(all(feature = "vmem", unix))]
pub mod integration_tests_vmem;
pub mod multithreading;
pub mod prod_tests;
pub mod work_tests;
#[cfg(all(feature = "vmem", unix))]
pub mod work_tests_vmem;