atomic_queue

C++14 lock-free queue library for high-performance concurrent programming

brewmacoslinux
Try with needOr install directly
Source

About

C++14 lock-free queues

Commands

atomic_queue

Examples

Include atomic_queue header in C++ project for lock-free queue operations$ g++ -std=c++14 -I$(brew --prefix atomic_queue)/include myprogram.cpp -o myprogram
Use atomic_queue in CMake project configuration$ find_package(atomic_queue REQUIRED) and target_link_libraries(mytarget atomic_queue::atomic_queue)
Access atomic_queue installation path for manual integration$ brew --prefix atomic_queue