我正在处理一个服务器端项目,该项目应该接受100多个客户端连接。
这是一个使用boost::thread的多线程程序。有些地方我使用boost::lock_guard<boost::mutex>
来锁定共享成员数据。还有一个包含输入连接的BlockingQueue<ConnectionPtr>
。BlockingQueue
的实现:
template <typename DataType>
class BlockingQueue : private boost::noncopyable
{
public:
BlockingQueue()
: nblocked(0), stopped(false)
{
}
~BlockingQueue()
{
Stop(true);
}
void Push(const DataType& item)
{
boost::mutex::scoped_lock lock(mutex);
queue.push(item);
lock.unlock();
cond.notify_one(); // cond.notify_all();
}
bool Empty() const
{
boost::mutex::scoped_lock lock(mutex);
return queue.empty();
}
std::size_t Count() const
{
boost::mutex::scoped_lock lock(mutex);
return queue.size();
}
bool TryPop(DataType& poppedItem)
{
boost::mutex::scoped_lock lock(mutex);
if (queue.empty())
return false;
poppedItem = queue.front();
queue.pop();
return true;
}
DataType WaitPop()
{
boost::mutex::scoped_lock lock(mutex);
++nblocked;
while (!stopped && queue.empty()) // Or: if (queue.empty())
cond.wait(lock);
--nblocked;
if (stopped)
{
cond.notify_all(); // Tell Stop() that this thread has left
BOOST_THROW_EXCEPTION(BlockingQueueTerminatedException());
}
DataType tmp(queue.front());
queue.pop();
return tmp;
}
void Stop(bool wait)
{
boost::mutex::scoped_lock lock(mutex);
stopped = true;
cond.notify_all();
if (wait) // Wait till all blocked threads on the waiting queue to leave BlockingQueue::WaitPop()
{
while (nblocked)
cond.wait(lock);
}
}
private:
std::queue<DataType> queue;
mutable boost::mutex mutex;
boost::condition_variable_any cond;
unsigned int nblocked;
bool stopped;
};
对于每个Connection
,都有一个ConcurrentQueue<StreamPtr>
,其中包含输入流。
template <typename DataType>
class ConcurrentQueue : private boost::noncopyable
{
public:
void Push(const DataType& item)
{
boost::mutex::scoped_lock lock(mutex);
queue.push(item);
}
bool Empty() const
{
boost::mutex::scoped_lock lock(mutex);
return queue.empty();
}
bool TryPop(DataType& poppedItem)
{
boost::mutex::scoped_lock lock(mutex);
if (queue.empty())
return false;
poppedItem = queue.front();
queue.pop();
return true;
}
private:
std::queue<DataType> queue;
mutable boost::mutex mutex;
};
调试程序时,这是正常的。但是在50个、100个或更多客户端连接的负载测试中,有时会因
pthread_mutex_lock.c:321: __pthread_mutex_lock_full: Assertion `robust || (oldval & 0x40000000) == 0' failed.
我不知道发生了什么事,也不可能每次都重现。
我在谷歌上搜索了很多,但没有运气。请指教。
- 谢谢-谢谢
彼得
2条答案
按热度按时间kse8i1jr1#
0x40000000
是FUTEX_OWNER_DIED
-在futex.h
标题中包含以下文档:因此,Assert似乎是一个指示,持有锁的线程由于某种原因正在退出--有没有一种方法可以在线程对象持有锁时销毁它?
另一件要检查的事情是你是否在某个地方有某种内存损坏。Valgrind可能是一个可以帮助你解决这个问题的工具。
46qrfjad2#
我有一个类似的问题,并发现了这篇文章。它可能对你们中的一些人有用:在我的情况下,我只是错过了初始化。