在 OS X/gdb 中查找崩溃线程的创建者?

发布于 2024-11-08 14:49:25 字数 338 浏览 0 评论 0原文

假设我在 gdb 中并且有一个像这样的调用堆栈:

Thread 24 (process 6449):
#0 0x994010e2 in semaphore_wait_signal_trap ()
#1 0x9942ec9c in _pthread_cond_wait ()
#2 0x9947745f in pthread_cond_wait ()
#3 0x92ed1ccd in jpegdecompress_MPLoop ()
#4 0x9942e7fd in _pthread_start ()
#5 0x9942e682 in thread_start ()

如何找出谁创建了该线程?

let's say I'm in gdb and have a call stack like this:

Thread 24 (process 6449):
#0 0x994010e2 in semaphore_wait_signal_trap ()
#1 0x9942ec9c in _pthread_cond_wait ()
#2 0x9947745f in pthread_cond_wait ()
#3 0x92ed1ccd in jpegdecompress_MPLoop ()
#4 0x9942e7fd in _pthread_start ()
#5 0x9942e682 in thread_start ()

How do I find out who created that thread?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡淡離愁欲言轉身 2024-11-15 14:49:25

一般来说,您不能:pthread 库没有任何理由记录和存储该信息。

在只创建少量线程的应用程序中,这通常也不需要 - 如果您知道是 jpegdecompressor 线程崩溃了,并且您只创建了其中一个线程,那么告诉哪里 该线程已创建。

如果您确实需要答案,则必须在调用 pthread_create 时记录堆栈跟踪,并将其传递给新线程以保存在某个线程本地中。

In general, you can't: the pthread library doesn't have any reason to record and store that info.

In applications that create only a handful of threads, this usually isn't needed either -- if you know that it's the jpegdecompressor thread that crashed, and you only create one of them, then it's trivial to tell where that thread was created.

If you really need the answer, you'll have to record the stack trace at the time of pthread_create call, and pass that to the new thread to save away in some thread-local.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文