readerwriterqueue icon indicating copy to clipboard operation
readerwriterqueue copied to clipboard

A fast single-producer, single-consumer lock-free queue for C++

Results 22 readerwriterqueue issues
Sort by recently updated
recently updated
newest added

First, thanks for a great library! **Issue** When building with a recent version of CMake (3.31.7) I see the following warning: ``` build>cmake .. CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):...

LightweightSemaphore initial spinning adds a lot of CPU overhead on slow raspberryPI devices in a scenario like this: consumer thread pseudocode: ``` BlockingReaderWriterQueue queue; while(true) { int next_wait_time = do_some_io_stuff()...