gpt4 book ai didi

c++ - 卡在 _dl_sysinfo_int80 上的多线程应用程序

转载 作者:太空狗 更新时间:2023-10-29 12:38:50 25 4
gpt4 key购买 nike

我有一个多线程应用程序正在调用 _dl_sysinfo_int80()。根据 gdb,所有线程都卡在这个调用中。

堆栈跟踪的顶部如下所示:

#0  0x002727a2 in _dl_sysinfo_int80 () from /lib/ld-linux.so.2
#1 0x004f23de in __lll_mutex_lock_wait () from /lib/tls/libpthread.so.0
#2 0x004ef00b in _L_mutex_lock_35 () from /lib/tls/libpthread.so.0
#3 0x092828ac in construction vtable for std::ostream-in-std::basic_stringstream<char, std::char_traits<char>, std::allocator<char> > ()

知道是什么原因造成的吗?

最佳答案

int 80 是进行内核级系统调用的软件中断。我的猜测是 pthread 正在调用挂起的内核。可能有多种原因会导致您的所有线程都像这样卡在互斥锁上:
- 互斥锁被另一个没有释放锁而退出的线程锁定
- 互斥量被输入锁定它的线程之一锁定并且未声明为递归
- 互斥锁根本没有被初始化
- 互斥锁已被坏指针、堆栈问题、某些其他类型的一般内存损坏损坏。

关于c++ - 卡在 _dl_sysinfo_int80 上的多线程应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/304010/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com