ThreadPool
ThreadPool copied to clipboard
A fast, small, efficient pthreads based threadpool in c
Results
2
ThreadPool issues
Sort by
recently updated
recently updated
newest added
Hi subhranil, i tried several on github, yours is sofar the best. But still an issue: if not resumed, only a couple of jobs are done, not all; if resumed,...
Hello, I think there is a concurrency issue with adding tasks and thread execution methods in the code. Fragment in thread execution method threadExecutor: ```c++ pthread_mutex_lock(&pool->queuemutex); // Lock the queue...