Distributed Systems Network Management (DSNM) Subsystem Interface Development Guide
DSNM Library Services
Distributed Systems Network Management (DSNM) Subsystem Interface Development
Guide—109759 A-35
_COMPILED^IN^TESTMODE
_COMPILED^IN^TESTMODE
_COMPILED^IN^TESTMODE is a literal with a value of 1, if a source file is compiled
with the SETTOG 1 compiler directive; otherwise, _COMPILED^IN^TESTMODE is 0.
Use _COMPILED^IN^TESTMODE to set the value of the testmode parameter in
your _STARTUP^MODE procedure.
Example
INT PROC _STARTUP^MODE (component, testmode,
accept^startup^component) EXTENSIBLE;
STRING .EXT component;
INT .EXT accept^startup^component;
BEGIN
testmode := _COMPILED^IN^TESTMODE;
accept^startup^component := 1;
RETURN ZDSN^ERR^NOERR;
END;
_COMPILED^IN^TESTMODE