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
- Host: GitHub
- URL: https://github.com/rexim/cpp_concurrent_queue
- Owner: rexim
- License: mit
- Created: 2020-04-23T08:58:30.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-23T09:03:23.000Z (about 6 years ago)
- Last Synced: 2025-04-23T14:53:11.522Z (about 1 year ago)
- Language: C++
- Size: 1.95 KB
- Stars: 9
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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