GDB+Python:确定目标类型
有没有办法确定调试目标是核心转储还是“实时”进程?
Is there a way to determine whether the debugged target is a core dump or a 'live' process?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法确定调试目标是核心转储还是“实时”进程?
Is there a way to determine whether the debugged target is a core dump or a 'live' process?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
据我所知,Python 中没有专门的方法来执行此操作,但是您仍然可以使用
gdb.execute("", to_string=)
在 Python 中执行“CLI”命令,其中to_string
为True
将告诉 GDB 收集输出并将其作为字符串返回(参见 doc)维护打印target-stack
它将打印内部用于访问下层的层。如果核心调试层处于活动状态,您应该会看到“core(本地核心转储文件)
”。总而言之,一些类似的代码
就可以解决问题。
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, whereto_string
beingTrue
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
should do the trick.