Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 286 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 286 Bytes

ThreadPool

ThreadPool is a C++11 header only library of a thread pool and a thread safe queue.

The code is based on `C++ Concurrency in Action: Practical Multithreading' by Anthony A. Williams.

Installation

Linux

mkdir build  && cd build 
cmake .. 
make -j4