Native Inspect Manual (H06.07+)

Syntax of Native Inspect Commands
Native Inspect Manual528122-006
4-82
up command, up-silently command
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 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 command, down-silently command.
count
is the number of frames to advance before selecting a stack frame.
Example
To use the up and down commands (C example):
(eInspect 1,329):until 382
pcbDataStructs_initialize () at \SIERRA.$YOSE1.SYMBAT1.SCXXTST:382
382 pcb->flags.item.isReady = 1;
{ up | up-silently } count
(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 ) );