GitXplorerGitXplorer
s

c11-queues

public
37 stars
7 forks
1 issues

Commits

List of commits on branch master.
Unverified
b602dcd2df5e835798581c46755487d1aca73e2d

Merge branch 'master' of github.com:stv0g/c11-stdatomic-queue

sstv0g committed 8 years ago
Unverified
9ebd2a289d1ad1551ad0274e6ccd28d8f1d53390

fixed compiler warnings (-Wsign-compare) (closes #2)

sstv0g committed 8 years ago
Unverified
d6a6b6e5dc6fd9413c21d61aae7e56b6aed33710

Replace memory_order_consume with memory_order_acquire as in MPMC implementation

committed 8 years ago
Unverified
6742f969f80d20dbe70130ce540b8ac5a65bc969

Improvements in unbounded queue from gprof results---needs further testing

uumarfaruq committed 8 years ago
Unverified
9516618923f915d3dcf1d19ed19fe1c96f8bd38f

Replace rdtscp with rdtsc for older CPU version testing

uumarfaruq committed 8 years ago
Unverified
0a5f905c654964d68f7b044cdcf5ce234a0529d0

Initial results for cycles/op added in README

committed 8 years ago

README

The README file for this repository.

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.