Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 516 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 516 Bytes

KFIFO-Queue

note: this is a work in progress, but the core implementation is complete

Hi there! So this is an implementation of a k-FIFO queue from this paper: Fast and Scalable, Lock-free k-FIFO Queues.

To run the program, you'll need to use C++11. On Mac/Linux systems just run this in the terminal:

$ git clone https://github.com/farzaa/KFIFO-Queue.git
$ cd KFIFO-Queue
$ g++ -std=c++11 kfifo.cpp && ./a.out