c++ - How to remove catchpoint in gdb -
i've set catch point in gdb catch exceptions catch throw. how remove without restarting gdb session?
neither delete nor clear seem helpful here.
it turned out tried delete wrongly delete throw.
(gdb) info breakpoints num type disp enb address 2 breakpoint keep y 0x063e3255 exception throw
delete 2 did trick.
Comments
Post a Comment