How to remove catchpoint in gdb
I've set a catch point in gdb
to catch exceptions with catch throw
. How do I remove it without restarting gdb
session?
Neither delete
nor clear
seem to be helpful here.
It turned out I tried to delete it wrongly with delete throw
.
(gdb) info breakpoints Num Type Disp Enb Address What 2 breakpoint keep y 0x063e3255 exception throw
delete 2
did the trick.
上一篇: 正确的HTML标记和认证流程以实现密码管理器兼容性?
下一篇: 如何在gdb中删除catchpoint