Native Inspect Manual (H06.04+)

Syntax of Native Inspect Commands
Native Inspect Manual528122-005
4-19
comment command
Example
To define breakpoint actions:
comment command
A Tcl command that introduces a line of comment.
Alias: # command
Either comment or # must be the first nonblank character in the line. The entire line is
then treated as a comment.
condition command
Specifies a conditional expression to be evaluated when a breakpoint is hit. The
breakpoint is reported only if the condition evaluates to TRUE.
breakpoint-number
is the number of the breakpoint or catch event for which the specified expression is
to be evaluated.
conditional-expression
is the conditional expression that you want evaluated when Native Inspect
encounters the specified breakpoint. If you omit the conditional-expression,
any existing condition is cleared, and the specified breakpoint is treated as an
unconditional breakpoint.
The conditional expression here is different from the low-level conditional
expression supported by the mab and break commands. Low-level conditional
expressions (LLCEs) are evaluated by interrupt processes in the NonStop
operating system. High-level conditional expressions (HLCEs), such as those
supported by the condition command, are evaluated by Native Inspect.
(eInspect 1,329):commands 1
Type commands for when breakpoint 1 is hit, one per line.
End with a line saying just "end".
>print PCB
>end
{ comment | # } [ text ]
condition breakpoint-number [ conditional-expression ]