gdb 可以设置为在任何抛出时中断吗?

发布于 2025-01-05 23:33:55 字数 82 浏览 1 评论 0原文

我正在调试带有异常抛出和异常处理的代码。我希望 gdb 在抛出异常时立即中断,这样我就可以检查程序和调用堆栈的状态。当抛出异常时如何让 gdb 中断?

I am debugging code with exception throwing and exception handling. I would like gdb to break immediately when an exception is thrown, so i can inspect the state of the program and the call stack. How can I make gdb break when any exception is thrown?

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

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

发布评论

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

评论(1

韶华倾负 2025-01-12 23:33:55

您可以使用catch throw 命令来执行此操作。请参阅此处

捕获 事件

事件发生时停止。 事件可以是以下任意一个
以下:

抛出 [正则表达式]

重新抛出 [正则表达式]

catch [正则表达式]

投掷,
重新抛出或捕获 C++ 异常。

如果给出regexp,那么只有类型与
正则表达式将被捕获。

You can do this with the catch throw command. See here:

catch event

Stop when event occurs. The event can be any of the
following:

throw [regexp]

rethrow [regexp]

catch [regexp]

The throwing,
re-throwing, or catching of a C++ exception.

If regexp is given, then only exceptions whose type matches the
regular expression will be caught.

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