Native Inspect Manual (H06.03+)

Table Of Contents
Syntax of Native Inspect Commands
Native Inspect Manual528122-003
3-66
set command (environment)
Examples
To set pretty printing on and off:
To set pretty printing for arrays:
(eInspect 4,770): set print pretty off
(eInspect 4,770): print pcb
$2 = (PCB_t *) 0x0
(eInspect 4,770): c
Continuing.
Breakpoint 3, pcbDataStructs_initialize ()
at \SIERRA.$YOSE1.SYMBAT1.SCXXTST:362
362 PCB_addAttribute( pcb, PCBAttribute_createSystem( 5 ) );
(eInspect 4,770): print *pcb
$3 = {state = 0, flags = {word = 0, item = {isBad = 0, isReady = 0,
isHappy = 0, isStarved = 0, waitState = 0}}, dispatchCount = 0, pin
= 0,
attributeCount = 0, attribute = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
0x0, 0x0}}
(eInspect 4,770): set print pretty on
(eInspect 4,770): print *pcb
$4 = {
state = 0,
flags = {
word = 0,
item = {
isBad = 0,
isReady = 0,
isBad = 0,
isReady = 0,
isHappy = 0,
isStarved = 0,
waitState = 0
}
},
dispatchCount = 0,
pin = 0,
attributeCount = 0,
attribute = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}
}
(eInspect 4,770): set print array off
(eInspect 4,770): print pcb->attribute
$5 = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}
(eInspect 4,770): set print array on
(eInspect 4,770): print pcb->attribute
$6 = {0x0,
0x0,
0x0,
0x0,
0x0,
0x0,
0x0,
0x0,
0x0,
0x0}