我是 boost 线程库的新手。我有一种情况,我在一个函数中获得了一个 scoped_lock 并且需要在被调用者中等待它。
代码位于以下行:
class HavingMutex
{
public:
...
private:
static boost::mutex m;
static boost::condition_variable *c;
static void a();
static void b();
static void d();
}
void HavingMutex::a()
{
boost::mutex::scoped_lock lock(m);
...
b() //Need to pass lock here. Dunno how !
}
void HavingMutex::b(lock)
{
if (some condition)
d(lock) // Need to pass lock here. How ?
}
void HavingMutex::d(//Need to get lock here)
{
c->wait(lock); //Need to pass lock here (doesn't allow direct passing of mutex m)
}
基本上,在函数 d() 中,我需要访问我在 a() 中获得的作用域锁,以便我可以等待它。(其他一些线程会通知)。
任何帮助表示赞赏。谢谢 !