scbuf 0.1.1

scbuf (sync circular buffer) is a Send and Sync, lock-free circular buffer implementation.
Documentation
  • Coverage
  • 100%
    8 out of 8 items documented5 out of 7 items with examples
  • Size
  • Source code size: 17.51 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.31 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • derMihai/scbuf
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • derMihai

scbuf

scbuf (sync circular buffer) is a Send and Sync, lock-free circular buffer implementation.

In the single-producer, single-consumer scenario, it relies solely on atomics for synchronization. See new_scbuf for multiple-producer/consumer usage.