An open API service indexing awesome lists of open source software.

https://github.com/fakufaku/redpoule

A simple thread pool in C++
https://github.com/fakufaku/redpoule

parallel-processing thread-pool worker-pool

Last synced: 7 months ago
JSON representation

A simple thread pool in C++

Awesome Lists containing this project

README

          

Simple C++ Thread Pool
======================

Header-only, no dependency thread pool for parallel for loops implementation.

## Build and run tests

```bash
# prepare
mkdir build
cd build
cmake ..

# build
make

# run test
./test_threadpool
```