Skip to content

Releases: marcusspangenberg/waitfreequeue

1.0.1

15 May 06:42

Choose a tag to compare

  • Fixed incorrectly renamed file

0.0.10

01 Feb 12:43

Choose a tag to compare

Fix typo

0.0.9

01 Feb 10:18

Choose a tag to compare

Add missing file to the install step.

0.0.8

01 Feb 09:09

Choose a tag to compare

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

15 Jan 09:26

Choose a tag to compare

Removed function full() since it doesn't make sense in a multi-producer scenario.

0.0.6

11 Jan 14:17

Choose a tag to compare

  • Add empty() and full() functions.
  • Update docs.

0.0.5

25 Sep 07:11

Choose a tag to compare

  • Destroy remaining elements in destructor if needed.

0.0.4

21 Sep 13:59

Choose a tag to compare

  • Remove default constructible requirement.
  • Update docs

0.0.3

19 Sep 06:52

Choose a tag to compare

  • Bugfixes

0.0.2

18 Sep 17:22

Choose a tag to compare

  • Added cmake install step
  • Better support for non-trivially constructible element types