lldb如何检查互斥锁的拥有者?

时间:2017-08-03 01:15:18

标签: c++ multithreading gdb mutex lldb

我想在使用lldb调试时知道互斥锁的所有者,我在线查看gdb可以打印类似https://en.wikibooks.org/wiki/Linux_Applications_Debugging_Techniques/Deadlocks的线程ID

但是,当我在lldb中尝试这个时,互斥锁中的成员变量是不透明的,如:

Process 76057 stopped
* thread #1, queue = 'com.apple.main-thread', stop reason = breakpoint 1.1
    frame #0: 0x00000001000017f5 a.out`main at lol2.cc:65
   62       }
   63       std::cout << "main thread notify start" << std::endl;
   64       std::this_thread::sleep_for(std::chrono::seconds(1));
-> 65       start = true;
   66       cv.notify_all();
   67       {
   68           std::unique_lock<std::mutex> lk(mu1);
(lldb) p mu1
(mutex) $0 = {
  __mutex_base = {
    _M_mutex = (__sig = 1297437786, __opaque = char [56] @ 0x00007fc614127698)
  }
}
(lldb)

有什么办法可以获得不透明部分的内容吗?感谢。

1 个答案:

答案 0 :(得分:1)

我无法说我知道如何阅读不透明部分(可能依赖于实现)但我建议使用Ami Tavory的答案here来跟踪互斥锁的所有者允许在新班级中使用std::mutex