我有一些带有一些额外功能的单例类,它们在单独的线程中运行。结构如下:
class Singleton
{
private:
boost::mutex mMutex;
std::vector<std::string> mMessages;
public:
void AddMessage(const std::string &msg)
{
mMutex.lock();
mMessages.push_back(msg);
mMutex.unlock();
}
void Sender()
{
while (true) {
mMutex.lock();
for (size_t i = 0; i < mMessages.size(); ++i)
{
// Do something with mMessages[i]
}
mMutex.unlock();
}
}
};
...
int main()
{
Singleton *handle;
handle = Singleton::instance();
boost::thread sender(boost::bind(&Singleton::Sender, handle));
... app cycle ...
}
有时它会因错误而失败:
在抛出一个实例后调用终止
'boost::exception_detail::clone_impl<boost::exception_detail::error_info_injector<boost::lock_error> >'
what(): boost::lock_error
Aborted
它可能是什么以及找出断言原因的最佳方法是什么?