0
votes
1answer
21 views

copy to a list, pool, set of threads (1:n) / each thread local storage

I'm currently exploring boost::thread/threadpool and thread local storage basically to achieve a copy of one datagram to the job-queues for a pool of threads. The current setup uses a 1:1 setup to ...
1
vote
1answer
72 views

can a threadpool(like boost) be initialized into a class constructor and used when class members are called?

Lets say I have a threadpool (example might be http://threadpool.sourceforge.net/); And i have this code: class Demigod{ public: Demigod(); void AskObedienceFast(); void AskObedienceSlow(); ...
1
vote
1answer
324 views

Boost thread Overhead

I found that boost thread overhead has three order of magnitude timing overhead in the following simple program. Is there anyway to reduce this overhead and speedup the fooThread() call ? #include ...
1
vote
1answer
372 views

boost::thread yield different results on every run

I am trying to make use of boost::thread to perform "n" similar jobs. Of course, "n" in general could be exorbitantly high and so I want to restrict the number of simultaneously running threads to ...
0
votes
0answers
349 views

Threadpool in a Server - boost

I am trying to create a server that accepts connection and a thread handles the request, and the main thread goes back to listening. I am planning on using thread pool because handling is very ...
2
votes
0answers
876 views

Creating a thread Pool for boost threads

There seems to be two approaches to create thread pool for boost threads as boost thread does not provide thread pool directly. The first one is asio::io_service io_service; ...
1
vote
2answers
644 views

Identify objects in boost::shared_ptr<boost::thread>

I am building an application based on an example on the boost website. These are the relevant definitions to know of: typedef boost::shared_ptr< connection > connection_ptr; std::set< ...
10
votes
2answers
11k views

Creating a thread pool using boost

Is it possible to create a thread pool using boost's thread? i was looking all over boost's libs and I couldn't find a thread pool manager (or something like that)... Is there a way to do it? tnx!
20
votes
9answers
13k views

C++ Thread Pool

What is a good open source implementation of a thread pool for C++ to use in production code (something like boost)? Please provide either your own example code or a link to example code usage.