Syntax |
 |
CM program segments are loaded into the CSTX. CM library segments are
loaded into the CST.
During the evaluation of the parameter to the CST function,
the following CM search path is used for procedure name lookups:
GRP, PUB, LGRP, LPUB, SYS
|
Examples |
 |
%cmdebug > wl cst(12.304)
CST %12.304
|
Coerce the simple long pointer into a CST absolute code pointer.
%cmdebug > wl sort
PROG %4.3302
%cmdebug > wl grp (sort)
GRP %2.1364
%cmdebug > wl cst (sort)
CST %73.1364
|
Print the address of the procedure named sort. The first lookup uses
the standard procedure name lookup search path and finds the procedure
sort in the program file.
The second lookup restricts the search path to
the group library, and another sort procedure is located.
The third lookup restricts the search path to all of the currently
loaded libraries, and the second procedure is located again (within the
group library).
%cmdebug > wl cst(sys(24.630))
CST %24.630
|
The coercion simply changes the associated absolute file. Note that
no complicated conversion or range checking is performed.