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

(eInspect 3,1179): ih
Signal Priv/Non Handler Mask Flags
SIGHUP N 0xfffc0000 0x0 0x0
SIGINT N 0xfffc0000 0x0 0x0
SIGQUIT N 0xfffc0000 0x0 0x0
SIGILL N 0xfffc0000 0x0 0x0
SIGURG N 0xfffc0001 0x0 0x0
SIGABRT N 0xfffc0000 0x0 0x0
SIGIO N 0xfffc0001 0x0 0x0
SIGFPE N 0xfffc0000 0x0 0x0
SIGKILL N 0xfffc0000 0x0 0x0
SIGSEGV N 0xfffc0000 0x0 0x0
SIGWINCH N 0xfffc0001 0x0 0x0
SIGPIPE N 0xfffc0000 0x0 0x0
SIGALRM N 0xfffc0000 0x0 0x0
SIGTERM N 0xfffc0000 0x0 0x0
SIGUSR1 N 0xfffc0000 0x0 0x0
SIGUSR2 N 0xfffc0000 0x0 0x0
SIGCHLD N 0xfffc0001 0x0 0x0
SIGRECV N 0xfffc0001 0x0 0x0
SIGSTOP N 0xfffc0000 0x0 0x0
SIGTSTP N 0xfffc0000 0x0 0x0
SIGMEMERR N 0xfffc0000 0x0 0x0
SIGNOMEM N 0xfffc0000 0x0 0x0
SIGMEMMGR N 0xfffc0000 0x0 0x0
SIGSTK N 0xfffc0000 0x0 0x0
SIGTIMEOUT N 0xfffc0000 0x0 0x0
SIGLIMIT N 0xfffc0000 0x0 0x0
SIGCONT N 0xfffc0001 0x0 0x0
SIGTTIN N 0xfffc0000 0x0 0x0
SIGTTOU N 0xfffc0000 0x0 0x0
SIGABND N 0xfffc0000 0x0 0x0
in Command
Displays instructions at the specified location. The I command is Debug-compatible.
i {{native-address [count]} | function-name}
Where:
native-address
The address at which you want to display instructions. See Syntax of native-address (page 61).
count
The number of instruction bundles to display (the three instructions that can be executed in a
single CPU cycle. The default value is 1.
function-name
The name of the function in the source whose instructions you want to display.
Alternate methods of displaying instructions are:
Using the x command in the form: x/i $pc. (See x Command (page 125).)
Using the display command in the form: display/i $pc. (See display Command
(page 76).)
Example
To display instructions:
(eInspect 1,700): i 0x70001c80 5
eInspect 1,700):i 0x70001c80 5
Dump of assembler code from 0x70001c80:0 to 0x70001cd0:0:
;;; File: \PELICAN.$DATA3.SUBVOL.GARTESTC
118 {
in Command 85