Distributed Systems Network Management (DSNM) Subsystem Interface Development Guide
DSNM Library Services
Distributed Systems Network Management (DSNM) Subsystem Interface Development
Guide—109759 A-129
_TURNOFF
_TURNOFF
_TURNOFF turns off all the bits in int-var that are on in bit-mask.
int-var input/output
INT:ref
is a variable, the bits of which are turned off according to the contents of
bit-mask.
bit-mask input
INT:value
is an INT expression, the one-bits of which identify the bits in int-var to turn off.
Example
The following example turns off bits 9 and 11 in var:
INT var;
LITERAL evta = %20; ! evta.<11> on
LITERAL evtb = %100; ! evtb.<9> on
_TURNOFF (var, evta + evtb); ! var.<9> and var.<11>
! now off
_TURNOFF ( int-var , bit-mask );