我目前正在尝试编写一个并发队列,但是我有一些我无法向自己解释的段错误。我的队列实现基本上是由这个站点上的第一个列表给出的。
该网站说,如果从队列中并行删除对象,则会出现竞争条件,但我只是不明白为什么会有一个,有人可以向我解释一下吗?
编辑:这是代码:
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();
}
};