delete breakpoints (gdb mode only)

Delete all or a specific breakpoint.

Syntax

delete [breakpoints] [ {ID ... | ID-range ...} ]

Parameters

ID

The ID number of the breakpoint. The ID number is an unsigned integer greater than 0 and assigned to a breakpoint by the debugger. You can specify one or more ID numbers, separated by space.

ID-range

You can also specify one or more ranges of ID numbers, denoted as x-y, where x is the starting ID and y the end ID of a single range.

Description

This command deletes breakpoints with the specified ID numbers. If do not specify an ID number, the command deletes all breakpoints.

Example

The following command deletes the breakpoint with the ID number 4.

(idb) delete breakpoints 4
(idb) delete breakpoints 1-4

The following command deletes the breakpoints with the ID number 1, 2, 3 and 4, and the breakpoint with the ID number 6.

(idb) delete breakpoints 1-4 6

See Also


Submit feedback on this help topic

Copyright © 2001-2011, Intel Corporation. All rights reserved.