在 c++ 中打印完整的回溯

发布于 2024-12-13 01:35:14 字数 181 浏览 1 评论 0原文

我想以与 gdb 中类似的格式从 Linux 中的 C++ 程序转储回溯。我尝试使用 backtrace() 和 backtrace_symbols() 函数来实现此目的。这些返回的函数名称和偏移量。我可以使用 __cxa_demangle() 函数来获取可读的函数名称。

有没有办法也获取文件/行位置,因为它是由 gdb 完成的?

I want to dump a backtrace from a C++ program in Linux in a similar format as it is done in gdb. I tried to use the backtrace() and backtrace_symbols() functions for this purpose. These returned function names and offsets. I can use the __cxa_demangle() function to get a readable function name.

Is there any way to get the file/line positions too, as it is done by gdb?

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

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

发布评论

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

评论(1

请恋爱 2024-12-20 01:35:14

如何更好从程序中调用 gdb 来打印其堆栈跟踪?`

方法 #4,显示了一种获取文件名和行的方法。但使用外部程序..

How it's better to invoke gdb from program to print its stacktrace?`

Methode #4, shows a way to get filename and line. But uses a extern program..

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