Cela listera tous les points d'arrêt. Ensuite, un point d'arrêt peut être supprimé par son numéro correspondant:
del 3
Par exemple:
(gdb) info b
Num Type Disp Enb Address What
3 breakpoint keep y 0x004018c3 in timeCorrect at my3.c:215
4 breakpoint keep y 0x004295b0 in avi_write_packet atlibavformat/avienc.c:513
(gdb) del 3
(gdb) info b
Num Type Disp Enb Address What
4 breakpoint keep y 0x004295b0 in avi_write_packet atlibavformat/avienc.c:513
d <filename>:<breakpoint no>
.Réponses:
Essayez ces ( référence ):
la source
Vous pouvez lister les points d'arrêt avec:
Cela listera tous les points d'arrêt. Ensuite, un point d'arrêt peut être supprimé par son numéro correspondant:
Par exemple:
la source
info break
eni b
Vous pouvez supprimer tous les points d'arrêt à l'aide de
Pour afficher le start_breakpoint_num et end_breakpoint_num, utilisez:
la source
Utilisation:
la source