README.md 309 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
# pthread_pool

[线程池](https://github.com/Cascol-Chen/pthread_pool/tree/main)

A simple implementation of threads pool using pthread.h with C++ 

In my implementation:
1. All the task will be finished before the pool is destroyed
2. Each thread_pool has its own tasks_queue if you create multiple pools.