can somebody explain me, why author thinks that below part of source code leads to race? Author says: "This design is subject to race conditions between calls to empty, front and pop if there is more than one thread removing items from the queue, but in a single-consumer system (as being discussed here), this is not a problem."
please see: http://digg.com/newsbar/topnews/How_to_write_a_Thread_Safe_Queue_in_C
Thank you
template<typename Data>
class concurrent_queue
{
private:
std::queue<Data> the_queue;
mutable boost::mutex the_mutex;
public:
void push(const Data& data)
{
boost::mutex::scoped_lock lock(the_mutex);
the_queue.push(data);
}
bool empty() const
{
boost::mutex::scoped_lock lock(the_mutex);
return the_queue.empty();
}
Data& front()
{
boost::mutex::scoped_lock lock(the_mutex);
return the_queue.front();
}
Data const& front() const
{
boost::mutex::scoped_lock lock(the_mutex);
return the_queue.front();
}
void pop()
{
boost::mutex::scoped_lock lock(the_mutex);
the_queue.pop();
}
};
concurrent_queueat all. It has enough locking to (probably) keep you from completely borking its internal state, but still lacks what you (normally) need (or at least really want) to work at all well for concurrent use. For example, on the consumer side you should really poll to see if there's data to retrieve; the consumer thread should block when the queue is empty, and wake up when there's data. If there are N data items, exactly N thread wakeups should happen (one thread N times, N threads once each, etc.) – Jerry Coffin Apr 13 '12 at 21:42