在 GDB 中按 CTRL+C 终止程序

发布于 2024-12-10 11:59:46 字数 223 浏览 1 评论 0原文

我的程序通过在命令窗口中点击 CTRL+C 确定停止执行。到目前为止,我在这个停止阶段遇到了严重错误,所以我想用 gdb 进行调试。

问题是,gdb 将 CTRL+C 重新定义为自己的中断,并在被命中时暂停执行。我该如何处理 CTRL+C 关闭我的程序并且 gdb 可以捕获堆栈跟踪?

My program is determined to stop its execution by hitting CTRL+C in command window. By now, I have a critical error right in this stopping phase, so i want to debug with gdb.

Problem is, gdb redefines CTRL+C as its own interrupt and pauses the execution when hitted. How can I handle it that CTRL+C powers my programm off and gdb can catch the stack trace?

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

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

发布评论

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

评论(1

白馒头 2024-12-17 11:59:46

(gdb) 提示符下,键入 signal SIGINT。这将向正在调试的程序发送(令人惊讶的)SIGINT

或者,handle SIGINT nostop print pass 将使 GDB 将信号直接传递到下级(正在调试的)进程。

From the (gdb) prompt, type signal SIGINT. This will send (surprize) SIGINT to the program being debugged.

Alternatively, handle SIGINT nostop print pass will make GDB pass the signal straight to the inferior (being debugged) process.

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