DATA BREAK DELETE [ HP Transact Reference Manual ] MPE/iX 5.0 Documentation
HP Transact Reference Manual
DATA BREAK DELETE
Deletes a specified data breakpoint.
Syntax
[#breakpoint_number ]
{DATA BREAK DELETE} [[item_name ] [,system]]
{DBD } [[register_name] ]
[ALL ]
Parameters
#breakpoint_numberhe number assigned to the data breakpoint you want to
delete. You can identify this number by listing the
data breakpoints that are set. You must specify "#"
when you want to delete by number. For example, to
delete the third data breakpoint, type #3.
item_name The item name at which the data breakpoint is set.
register_name The register name of the data breakpoint that you want
to delete.
system A string representing the system name in which you want
to delete the data breakpoint. The currently executing
system is the default.
ALL A keyword that deletes the data breakpoints currently
set.
Discussion
This command allows you to delete breakpoints set at Transact/iX data
items. To execute this command, do one of the following:
* Specify the number corresponding to the desired breakpoint.
* Specify the segment and p-code offset of the breakpoint you want
to delete.
You can also use the DATA BREAK DELETE command without any parameters by
specifying DATA BREAK DELETE or DBD and pressing Return. TRANDEBUG
displays each breakpoint and prompts you to either keep it or delete it.
Examples
In the first example, a DATA BREAK LIST command shows the current data
breakpoints. In the second example, DATA BREAK DELETE is used to delete
the breakpoint number 0. In the third example, DATA BREAK DELETE deletes
the breakpoint using the data item name ITEM2.
TRANDEBUG> data break list
CURRENT DATA BREAKPOINTS:
SYSTEM ITEM NAME LENGTH COUNT TYPE
_____________________________________________________
0. TEST ITEM1 4 1 CHANGE
CMD LIST>>>>> DISPLAY MATCH;STEP
1. TEST ITEM2 8 1 VALUE
EQ VALUE>>>>> abcdefgh
TRANDEBUG> data break delete #0
BREAKPOINT DELETED:
SYSTEM ITEM NAME LENGTH COUNT TYPE
_____________________________________________________
0. TEST ITEM1 4 1 CHANGE
CMD LIST>>>>> DISPLAY MATCH;STEP
TRANDEBUG> data break delete ITEM2
BREAKPOINT DELETED:
SYSTEM ITEM NAME LENGTH COUNT TYPE
_____________________________________________________
1. TEST ITEM2(1) 8 1 VALUE
EQ VALUE>>>>> abcdefgh
MPE/iX 5.0 Documentation