Manuel
Manuel

Reputation: 6442

What happened to threadpool?

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

Answers (1)

Steve M
Steve M

Reputation: 8516

Boost::Thread has a thread_group type that provides typical thread pool operations. In C++11, using std::futures, will potentially do some pooling automatically.

Upvotes: 2

Related Questions