NET/MASTER Management Services (MS) Command Reference Manual
DEBUG BREAKPOINT
NonStop NET/MASTER MS Commands
2–34 115412 Tandem Computers Incorporated
2. The following example is the abbreviated form of the preceding example:
DEB B PROC=ENTRY PROC=EXIT PROC=EXT
3. The following example sets a breakpoint at the general error handler, ERROR, and
three specific error handlers:
DEB B ID=1234 E E=TYPE_ERROR E=ARITH_ERROR E=LABEL_ERROR
4. The following example sets a breakpoint at statement 45 in the current procedure
or function:
DEB B S=45
5. The following example sets a breakpoint at statement 1 in a nested function,
LEFT_TITLE:
DEB B S=WORDS.LEFT_TITLE.1
6. The following example sets a breakpoint at the variable &A for any type of access:
DEB B VAR=A TY=A
7. The following example sets a breakpoint at the variables &VAR01, &VAR02, and
&VAR03 for read access only:
DEB B V=VAR01 V=VAR02 V=VAR03 TY=R
8. The following example sets a variety of breakpoints:
DEB B S=16 S=WORDS.LEFT_TITLE.1 PROC=EXIT V=LINE TY=W T