https://github.com/bruce-lee-ly/thread_pool
Thread pool is implemented to process task queue with C++11.
https://github.com/bruce-lee-ly/thread_pool
cpp11 task-queue thread-pool
Last synced: 5 months ago
JSON representation
Thread pool is implemented to process task queue with C++11.
- Host: GitHub
- URL: https://github.com/bruce-lee-ly/thread_pool
- Owner: Bruce-Lee-LY
- License: mit
- Created: 2022-05-11T14:54:05.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-25T10:38:16.000Z (about 3 years ago)
- Last Synced: 2024-11-15T21:11:52.598Z (7 months ago)
- Topics: cpp11, task-queue, thread-pool
- Language: C++
- Homepage:
- Size: 4.88 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Thread Pool
Thread pool is implemented to process task queue with C++11.# Compile
## Environment
- OS: Linux
- Cmake Version: >= 3.8
- GCC Version: >= 4.8## Clone
```
git clone https://github.com/Bruce-Lee-LY/thread_pool.git
```## Build
```
cd thread_pool
./build.sh -t Release -b OFF
./build.sh -t Debug -b ON
```# Run Sample
```
./run_sample.sh
```# Reference
https://github.com/progschj/ThreadPool.git