Native Inspect Manual (H06.04+)
Syntax of Native Inspect Commands
Native Inspect Manual—528122-005
4-59
print command
To display a buffer formatted as a struct (use the set print pretty command to control
display format of structures):
To display a range of array elements (use the set print array command to control
display format of arrays):
To display complex C/C++ data structures:
To display cast expressions:
(eInspect 3,663): print gBuffer
$7 = '\000' <repeats 15 times>, "\003\b\000N\340\b\000O@\b\000O\240",
'\000' <repeats 27 times>
(eInspect 3,663): print {PCB_t} gBuffer
$8 = {
state = 0,
flags = {
word = 0,
item = {
isBad = 0,
isReady = 0,
isHappy = 0,
isStarved = 0,
waitState = 0
}
},
dispatchCount = 0,
pin = 0,
attributeCount = 3,
attribute = {0x8004ee0, 0x8004f40, 0x8004fa0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
0x0}
}
(eInspect 3,663): print gBuffer
$23 = "0123456789\000\000\000\000\000\003\b\000N\340\b\000O@\b\000O\240",
'\000'
<repeats 27 times>
(eInspect 3,663): print gBuffer[2]@5
$24 = "23456"
(eInspect 3,663):
(eInspect 3,657): print PCBList->entry[0]->ref.pcb->attribute->att.system
$12 = {
privLevel = 5
}
(eInspect 1,463): print pcb->flags
$4 = {
item = {
isBad = 0,
isReady = 1,
isHappy = 0,
isStarved = 0,
waitState = 0
}
}
(eInspect 1,463): print /t (unsigned long) pcb->flags
$5 = 1000000000000000000000000000000










