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

item = {
isBad = 0,
isReady = 1,
isHappy = 0,
isStarved = 0,
waitState = 0
}
}(eInspect 1,463): print /t (unsigned long) pcb->flags
$5 = 1000000000000000000000000000000
To display an item from the value history list:
(eInspect 1,463): print *PCBList.entry[0]
$11 = {
refCount = 2,
ref = {
address = 134236320,
pcb = 0x80048a0
}
}
(eInspect 1,463): print $11
$12 = {
refCount = 2,
ref = {
address = 134236320,
pcb = 0x80048a0
}
}
To modify variables:
(eInspect 3,663): print pcb->pin
$26 = 0
(eInspect 3,663): print pcb->pin=4
$27 = 4
(eInspect 3,663): print pcb->pin
$28 = 4
(eInspect 3,663): print pcb->attributeCount = PCBList.entry[1]->ref.pcb->attributeCount
$33 = 0
To modify variables:
(eInspect 4,219): p structure3
$1 = {
c = 0x70000c00 "From call2",
d = 2
}
(eInspect 4,219): p structure3.d=sizeof(structure3)
$2 = 16
(eInspect 4,219): p structure3
$3 = {
c = 0x70000c00 "From call2",
d = 16
}(eInspect 4,219):
To display the value of a COBOL expression:
(eInspect 7.390): print DI
$3=132
(eInspect 7,390): print DI IS NOT GREATER THAN 0
$4=T
(eInspect 7,390): print DI GREATER THAN 0
$5=T
(eInspect 7,390): print DI=6
$6=6
print Command 107