GDB+Python:确定目标类型

发布于 2024-12-06 10:01:59 字数 32 浏览 0 评论 0原文

有没有办法确定调试目标是核心转储还是“实时”进程?

Is there a way to determine whether the debugged target is a core dump or a 'live' process?

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

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

发布评论

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

评论(1

清风挽心 2024-12-13 10:01:59

据我所知,Python 中没有专门的方法来执行此操作,但是您仍然可以使用

  • gdb.execute("", to_string=) 在 Python 中执行“CLI”命令,其中 to_stringTrue 将告诉 GDB 收集输出并将其作为字符串返回(参见 doc)

  • 维护打印target-stack 它将打印内部用于访问下层的层。如果核心调试层处于活动状态,您应该会看到“core(本地核心转储文件)”。

总而言之,一些类似的代码

out = gdb.execute("maint print target-stack", to_string=True)
print "Local core dump file" in out

就可以解决问题。

As far as I know, there is no dedicated way to do it in Python, however, you can still use

  • gdb.execute("<command>", to_string=<boolean>) to execute a "CLI" command in Python, where to_string being True will tell GDB to collect the output and return it as a string (cf. doc)

  • maint print target-stack which will print the layers used internally to access the inferior. You should see "core (Local core dump file)" if the core-debugging layer is active.

So all-in-all, a bit of code like

out = gdb.execute("maint print target-stack", to_string=True)
print "Local core dump file" in out

should do the trick.

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