我想在使用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)
有什么办法可以获得不透明部分的内容吗?感谢。