An open API service indexing awesome lists of open source software.

https://github.com/rexim/cpp_concurrent_queue

Simple Concurrent Queue implementation in C++ using pthreads
https://github.com/rexim/cpp_concurrent_queue

Last synced: 12 months ago
JSON representation

Simple Concurrent Queue implementation in C++ using pthreads

Awesome Lists containing this project

README

          

# Concurrent Queue in C++

Simple Concurrent Queue implementation in C++ using pthreads. It is
actually implemented in C style. The only used C++ features are
- templates for generalization,
- member functions for conciseness of the implementation.

The implementation was born during research about parallel downloading
for [Vodus] project. After the research I came to the conclusion that
I don't need this queue in the project, but I didn't want to throw the
implementation away, so I put it here for future needs.

[Vodus]: https://github.com/tsoding/vodus