| |||
| Home > RealView Debugger Commands > Alphabetical command reference > DISABLEBREAK | |||
Disables one or more specified breakpoints.
,a {DISABLEBREAKbreakpoint_address | breakpoint_address_range}
[,h] [DISABLEBREAKbreak_num,...]
where:
,a breakpoint_addressSpecifies the address of the breakpoint to be disabled.
,a breakpoint_address_rangeSpecifies that all breakpoints within the address range are to be disabled. See Specifying address ranges for details on how to specify an address range.
break_numSpecifies one or more breakpoints to disable, separated by commas.
You identify breakpoints by their position in the list displayed by the DTBREAK command.
hDo not use this qualifier. It is for debugger internal use only.
The DISABLEBREAK command disables one or more breakpoints. A disabled breakpoint is removed from the target as if the breakpoint were deleted, but the debugger keeps a record of it. You can then enable it again by using the breakpoint address or the breakpoint number when required, rather than having to recreate it from scratch.
If you issue the command with no parameters then all breakpoints for this connection are disabled. Disabling a breakpoint that is already disabled has no effect.
The following examples show how to use DISABLEBREAK:
disablebreak,a 0x8008Disables the breakpoint at the address 0x8008.
disablebreak,a 0x8008..0x8024Disables all breakpoints in the address range 0x8008..0x8024.
disablebreak
4,6,8Disables the fourth, sixth, and eighth breakpoints in the current list of breakpoints.
disablebreakDisables all the current breakpoints.