| |||
| Home > RealView Debugger Commands > Alphabetical command reference > ENABLEBREAK | |||
The ENABLEBREAK command enables one or more specified breakpoints.
[,h] [ENABLEBREAKbreak_num,...]
where:
break_numSpecifies one or more breakpoints to enable, 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 ENABLEBREAK command enables one or more breakpoints that have been disabled. A disabled breakpoint is removed from the target as if the breakpoint were deleted, but the debugger keeps a record of it. You can enable it again, using this command, by referring to the breakpoint number, avoiding then having to recreate it from scratch.
If you issue the command with no parameters then all breakpoints are enabled. Enabling a breakpoint that is already enabled has no effect.
The command runs synchronously.
The following examples show how to use ENABLEBREAK:
enablebreak
4,6,8Enables the fourth, sixth, and eighth breakpoints in the current list of breakpoints.
enablebreakEnables all the current breakpoints.