在GDB中,如何在程序停止时自动执行命令? (如显示)

发布于 2024-12-05 08:28:41 字数 53 浏览 2 评论 0原文

我希望每次程序停止时自动执行一些命令,就像 display 对 x 所做的那样。我该怎么做?

I want some commands to be automatically executed each time the program stops, just like what display does with x. How do I do that?

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

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

发布评论

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

评论(2

捎一片雪花 2024-12-12 08:28:41

这是我发现的简单方法:

define hook-stop
  ...commands to be executed when execution stops
end

有关详细信息,请参阅此页面: http: //sourceware.org/gdb/current/onlinedocs/gdb/Hooks.html#Hooks

Here's the easy way I found out:

define hook-stop
  ...commands to be executed when execution stops
end

Refer to this page for details: http://sourceware.org/gdb/current/onlinedocs/gdb/Hooks.html#Hooks

心如狂蝶 2024-12-12 08:28:41

另一种“新”方法是使用 Python 事件接口

 def stop_handler (event):
     print "event type: stop"

 gdb.events.stop.connect (stop_handler)

每次下级停止时都会触发 stop_handler 函数。

还有另外两种类似的事件类型:

events.cont
events.exited

分别在下级继续或存在时触发。

Another "new" way to do it is with the Python Event interface:

 def stop_handler (event):
     print "event type: stop"

 gdb.events.stop.connect (stop_handler)

which will trigger the stop_handler function each the the inferior stops.

There are two other similar events type:

events.cont
events.exited

respectively triggered when the inferior is continued or exists.

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