Reputation: 6442
Does anyone of you know what happened to Threadpool?
It appears to be of good quality, although there are no tests included. Why has this not been added to Boost? Does anyone know of a C++11 port?
Upvotes: 3
Views: 413
Reputation: 8516
Boost::Thread has a thread_group
type that provides typical thread pool operations. In C++11, using std::future
s, will potentially do some pooling automatically.
Upvotes: 2