Native Inspect Manual (H06.03+)

Table Of Contents
Syntax of Native Inspect Commands
Native Inspect Manual528122-003
3-75
until command
until command
Continues executing the current process until a specified location is reached, a
debugging event occurs, or the current stack frame returns.
Alias: u
linespec
is the line number where you want execution to stop.
If you enter the until command with no arguments, the results are similar to those of
the next command, except that at the bottom of a loop the until command steps
through all remaining iterations.
Examples
To execute until the function returns:
To execute until a specified location (line 382):
up command, up-silently command
Selects the stack frame that calls the currently selected stack frame. The up command
also prints information about the newly selected stack frame. Related commands are
the down command, down-silently command
.
count
is the number of frames to advance before selecting a stack frame.
until [ linespec ]
(eInspect 1,329):until
- building PCBReadyList: 0, 2, 4
379 PCBList_add( &PCBReadyList, PCBList.entry[0] );
(eInspect 1,329):until 382
pcbDataStructs_initialize () at \SIERRA.$YOSE1.SYMBAT1.SCXXTST:382
382 pcb->flags.item.isReady = 1;
{ up | up-silently } count