Well, I'm trying to work on some kind of queue. I have an IO thread that it's dedicated for popping data out of the std::queue but the problem is that I'm using a Sleep() in order to prevent 100% cpu constant checking. And of course other threads which will add items to the std::queue.
How could I make an event so that the thread is dormant and only initiates when the std::queue is NOT empty?
IO Thread
Sleep(100);
while (!myqueue.empty())
{
//process data FIFO
myqueue.pop(); //pop out and continue
}
Much appreciated, thank you! Oh and this is for c++11 or c++03 it doesn't matter - on Windows.
condition_variable. Anthony Williams goes over some of the details of such an implementation here. – Sean Cline Feb 4 at 11:57empty,pop), it also means ordering them correctly and locking across the right operations together. – Jan Hudec Feb 4 at 12:09