Tagged Questions
1
vote
1answer
225 views
How can I use Boost condition variables in producer-consumer scenario?
EDIT: below
I have one thread responsible for streaming data from a device in buffers. In addition, I have N threads doing some processing on that data. In my setup, I would like the streamer thread ...
1
vote
2answers
188 views
Asynchronous Function in C++
I have a class object which is acting as a server. It receives request from anywhere and pushes the request in its request queue (Producer). Now there is a consumer thread running which is popping the ...
1
vote
1answer
432 views
boost::thread producer consumer
I am new toboost::thread I am making a producer consumer with a Monitor. This is how I've coded it so far.
//{ Declarations in header
private:
boost::condition_variable _condition;
...
0
votes
1answer
193 views
Boost Threads Producer/Consumer unexpected behavior
I am currently writing an application(using boost) that will have one producer grabbing frames and one consumer reading frames.I added a sleep statement in the producer to simulate the time to grab a ...
0
votes
1answer
719 views
Reuse Boost thread (from threadpool) after interuption or join
At the moment I am using a producer consumer model for the rendering portion of a realtime graphics application. The consumer will continually look for data in our queue(infinite loop); however I am ...