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++
- Host: GitHub
- URL: https://github.com/fakufaku/redpoule
- Owner: fakufaku
- License: mit
- Created: 2020-08-17T14:38:12.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-19T15:00:22.000Z (almost 6 years ago)
- Last Synced: 2025-01-28T19:33:57.058Z (over 1 year ago)
- Topics: parallel-processing, thread-pool, worker-pool
- Language: C++
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```