gpt4 book ai didi

c++ - 奇怪的线程堆栈

转载 作者:太空宇宙 更新时间:2023-11-04 10:46:22 25 4
gpt4 key购买 nike

当我的应用程序停止时,我遇到了崩溃。 Gdb 显示以下堆栈(应用程序使用 -g -O0 构建):

(gdb) bt
#0 0x0000000000000000 in ?? ()
#1 0x00007f254ea99700 in ?? ()
#2 0x0000000000000000 in ?? ()

简短的调查表明,崩溃发生在停止线程的过程中,该线程的启动方式与应用程序中的许多其他线程相同:

// mListener is std::thread and member of class UA
std::thread thr(&UA::run, this);
mListener = std::move(thr);

然后我在停止之前在应用程序上运行了 gdb,看到了导致崩溃的线程堆栈与其他线程之间的区别。所有线程看起来像:

...
#8 0x000000000043a70a in std::thread::_Impl<std::_Bind_simple<std::_Mem_fn<void (UI::Keyboard::*)()> (UI::Keyboard*)> >::_M_run() (this=0xa88fd0)
at /usr/include/c++/4.9/thread:115
#9 0x00007fb6055c3970 in ?? () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#10 0x00007fb6083ff0a4 in start_thread (arg=0x7fb604042700) at pthread_create.c:309
#11 0x00007fb604d3304d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111

但是“错误的”线程看起来总是不同的:

#0  sem_wait () at ../nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:85
#1 0x000000000043317d in Semaphore::wait (this=0x7fb5fc0009e8) at /home/vadius/workspace/iPhone/core/src/Core/env/Semaphore.h:28
#2 0x0000000000432564 in SIP::UA::run (this=0x7fb5fc000980) at /home/vadius/workspace/iPhone/core/src/SIP/UA.cpp:132
#3 0x0000000000000000 in ?? ()

我假设当线程从 worker 方法 (SIP::UA::run) 退出时,它会转到放置在 nullptr 中的代码。我的问题是:1. 我是对的,一堆“坏”线程是错误的吗?2. 这种行为的原因是什么,如何避免?

Debian 杰西 x64/海湾合作委员会 4.9/编译标志:set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -DDEBUG -g -O0")

最佳答案

赠品是“地址”。 432564"C%d"。正常地址中的字节通常不都是 ASCII。这是堆栈缓冲区溢出。

关于c++ - 奇怪的线程堆栈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32958862/

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