Skip to content

stv0g/c11-queues

Repository files navigation

Lock-free queues for C11

This Git repository contains lightweight simple implementation of lockless SPSC and MPMC queues.

Some reading material

Existing implementations

Credits

Initial Testing Results

All tests are using mem_heap. All tests use *_fib test.

With clock_gettime function for cycle/op measurement: Octopus Machine: MPMC: 52-54 cycles/op --Something wrong, results too good to be true?? Bounded SPSC: 230-300 cycles/op Unbounded SPSC: 300-400 cycles/op Side note: MPMC default test gets stuck with N=20000000, runs ok with N=2000000 with 160 cycles/op Ubuntu VM: MPMC: 90 cycles/op --Again result too good to be true in my opinion Bounded SPSC: 60-65 cycles/op Unbounded SPSC: 170-175 cycles/op

With rdtscp function for cycle/op measurement: Octopus Machine: Doesn't support rdtscp function, illegal instruction error. So alternate clock_gettime was used as above.

Ubuntu VM: MPMC: 160-200 cycles/op Bounded SPSC: 160-165 cycles/op Unbounded SPSC: 400-420 cycles/op

License

BSD 2-Clause License

All rights reserved.

  • Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

About

A single producer single - single consumer queue implemented by a ring buffer with C11's 'stdatomic.h'

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published