Native Inspect Manual (H06.13+, J06.03+)

until [locspec]
Where:
locspec
The location where you want execution to stop. See Syntax of locspec (page 59).
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:
(eInspect 1,329): until
- building PCBReadyList: 0, 2, 4
379 PCBList_add( &PCBReadyList, PCBList.entry[0] );
To execute until a specified location (line 382):
(eInspect 1,329): until 382
pcbDataStructs_initialize () at \SIERRA.$YOSE1.SYMBAT1.SCXXTST:382
382 pcb->flags.item.isReady = 1;
up (up-silently) Command
Selects the stack frame that calls the currently selected stack frame. The selected stack frame becomes
the stack frame relative to which program state is displayed. The up command also prints information
about the newly selected stack frame. Related commands are the down (down-silently) Command.
{up|up-silently} count
Where:
count
The number of frames to advance before selecting a stack frame.
Example
Use the up and down commands and C sources as follows:
(eInspect 4,770): bt
#0 pcbDataStructs_initialize () at \SIERRA.$YOSE1.SYMBAT1.SCXXTST:362
#1 0x700016a0:0 in main (argc=1, argv=0x8003010)
at \SIERRA.$YOSE1.SYMBAT1.SCXXTST:217
#2 0x700011f0:0 in _MAIN () at \SPEEDY.$RLSE.T8432H01.CPLMAINC:68
(eInspect 4,770): up
#1 0x700016a0:0 in main (argc=1, argv=0x8003010)
at \SIERRA.$YOSE1.SYMBAT1.SCXXTST:217
217 pcbDataStructs_initialize();
(eInspect 4,770): up
#2 0x700011f0:0 in _MAIN () at \SPEEDY.$RLSE.T8432H01.CPLMAINC:68
\SPEEDY.$RLSE.T8432H01.CPLMAINC:68: No such file or directory
(eInspect 4,770): down
#1 0x700016a0:0 in main (argc=1, argv=0x8003010)
at \SIERRA.$YOSE1.SYMBAT1.SCXXTST:217
217 pcbDataStructs_initialize();
(eInspect 4,770): down
#0 pcbDataStructs_initialize () at \SIERRA.$YOSE1.SYMBAT1.SCXXTST:362
362 PCB_addAttribute( pcb, PCBAttribute_createSystem( 5 ) );
Use the up and down commands for COBOL sources as follows:
(eInspect 7,416): bt
#0 EMMA.LISA () at \SIERRA.$AUDIT.DIVA.CBINIT:155
#1 0X70006950:0 in EMMA () at \SIERRA.$AUDIT.DIVA.CBINIT:136
#2 0x70003110:0 in EMMA () at \SIERRA.$AUDIT.DIVA.CBINIT:53
up (up-silently) Command 123