Build Status

A constant-size lock-free and almost wait-free ring buffer

Upsides

Text +64------+56------+48--------------+32------+24------+16-------------0+ | w_done | w_pend | write_index | r_done | r_pend | read_index | +--------+--------+----------------+--------+--------+----------------+

Dependencies

This package only depends on atomic64

Usage

AtomicRingBuffer is on crates.io and on docs.rs

To use AtomicRingBuffer, add this to your Cargo.toml:

toml [dependencies] atomicring = "0.1.0"

And something like this to your code

```rust

// create an AtomicRingBuffer with capacity of 1024 elements let ring = ::atomicring::AtomicRingBuffer::new(900);

// trypop removes an element of the buffer and returns None if the buffer is empty asserteq!(None, ring.trypop()); // pushoverwrite adds an element to the buffer, overwriting the oldest element if the buffer is full: ring.pushoverwrite(1); asserteq!(Some(1), ring.trypop()); asserteq!(None, ring.try_pop()); ```