Releases: marcusspangenberg/waitfreequeue
Releases · marcusspangenberg/waitfreequeue
1.0.1
0.0.10
Fix typo
0.0.9
Add missing file to the install step.
0.0.8
Add single-producer, single-consumer queue (WaitFreeSPSCQueue.h).
The queue type is useful when there is a need to be able to check for the number of elements in a queue and there is only one producer. Because of the shared size counter, push and pop operations can be slower than the MPSC queue.
0.0.7
Removed function full() since it doesn't make sense in a multi-producer scenario.
0.0.6
- Add empty() and full() functions.
- Update docs.
0.0.5
- Destroy remaining elements in destructor if needed.
0.0.4
- Remove default constructible requirement.
- Update docs
0.0.3
- Bugfixes
0.0.2
- Added cmake install step
- Better support for non-trivially constructible element types