⇤ ← Revision 1 as of 2020-04-07 19:24:56
Size: 626
Comment:
|
← Revision 2 as of 2020-04-07 19:28:15 ⇥
Size: 715
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
Lock-free (but not wait-free!) data structures, useful for multithreaded programming. |
Lock-free (but not wait-free!) data structures, useful for multithreaded programming.
General
Implementations
cameron314/concurrentqueue: Multi-producer, multi-consumer lock-free concurrent queue. Reddit.
cameron314/readerwriterqueue: Single-producer, single-consumer lock-free queue. Blog post.