I set a capture point in GDB to catch exceptions with catch throw . How can I delete it without restarting the GDB session?
catch throw
Neither delete nor clear seems to help here.
delete
clear
It turned out that I tried to delete it incorrectly with delete throw .
delete throw
(gdb) info breakpoints Num Type Disp Enb Address What 2 breakpoint keep y 0x063e3255 exception throw
delete 2 did the trick.
delete 2