如何停止失控的 GDB 命令?
有时我发现自己不小心触发了一个需要很长时间才能完成的 GDB 命令。一个示例是在符号名称上使用制表符补全来设置断点。额外点击一两次 Tab 键有时会触发 GDB 列出所有加载的符号。然后我必须等待几分钟才能完成。除了终止整个调试会话之外,还有其他方法可以中断 GDB 命令吗?
Occasionally I find myself accidentally triggering a GDB command that takes a long time to complete. An example would be setting a breakpoint using tab-completion on the symbol name. Hitting tab an extra time or two can sometimes trigger GDB listing ALL loaded symbols. Then I have to wait for a few minutes while that completes. Is there a way to interrupt the GDB command other than just killing the whole debugging session?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 gdb 中点击 CTRL-C 应该会中断最后发出的(耗时的)命令。有关详细信息,请参阅这篇关于使用 gdb 调试的文章。
Hitting CTRL-C in gdb should interrupt the last (time consuming) command issued. See this article on Debugging with gdb for more info.