Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A ThreadPool library in C++

I am looking for a good and stable threadpool library for C++ that's fairly well documented. I know about the Native Windows thread pool API and the newer Vista Thread Pool API, however my program requires some backward compatibility, so perhaps an outside library I can provide with the program is better.

I have looked into Boost's threadpool and it doesn't look bad at all, unfortunatly it is not very well documented.

Does anyone know any other libraries that have a ThreadPool in C++? (for Windows)

like image 698
Tony The Lion Avatar asked Dec 08 '22 01:12

Tony The Lion


1 Answers

A portable threadpool library that claims to be 'production ready'. You may want to check that out.

like image 193
Vijay Mathew Avatar answered Jan 28 '23 12:01

Vijay Mathew