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

To set a MAB on 4 bytes at a given address:
(eInspect 1,480): mab *0x00000070 4
To set a MAB on variable j when it changes:
(eInspect 1,480): mab j -c
To set a “change” MAB:
(eInspect 1,480): mab PCBList.count -c
map-source-name (map) Command
Defines filename mapping rules between source file names at compilation time and at debug time.
Related Commands: Use the dir Command to append a directory (subvolume) to the search path
used to locate source files. Use the unmap-source-name (unmap) Command to delete an existing
mapping rule.
map-source-name|map [[source-name] = alias-name] | [source-prefix =
alias-prefix]
Where:
source-name
The fully qualified name of the source file at compilation time. If source-name is omitted, the
fully qualified name of the current source file is used. For Guardian source files, if the node
name is omitted in source-name, the default node name is used. For example,
map $dev11.src5.hello=$test11.src5.hello
alias-name
This is either a fully qualified file name or an unqualified file name to which you are mapping
the fully qualified source-name. If alias-name is unqualified, Native Inspect locates it using the
subvolume search path defined by the dir Command.
source-prefix
A prefix (of any length) of the fully qualified name of the source file at compilation time. For
Guardian source files, if the node name is omitted in source-prefix, the default node name
is used.
alias-prefix
A prefix that will be substituted for source-prefix in source file names. For example, the
following command maps D:\nsk\T1000\src\cpu\mips\x.c to /h/usr/rell/src/
cpu/mips/x.c:
map D:\nsk\T1000=/h/usr/rell
All source name mappings are assigned unique mapping entry numbers. A new mapping is
assigned a higher mapping entry number and takes precedence over previous mappings.
The map command is useful when a file name has changed in some way, whereas the dir command
is useful when a file’s directory location has changed. When you transfer files compiled on a PC
or workstation to the NonStop system, the file names are often not identical.
You can use the dir Command and the map command in combination:
Use the dir command to define the directory (subvolume).
Use the map command to change the base file name.
A map-source-name with no parameters lists the existing source name mappings along with their
associated mapping numbers.
map-source-name (map) Command 99