Distributed Systems Network Management (DSNM) Subsystem Interface Development Guide
DSNM Library Services
Distributed Systems Network Management (DSNM) Subsystem Interface Development
Guide—109759 A-77
_NULL^LIST
_NULL^LIST
_NULL ^LIST initializes a list structure. It is useful to initialize a _LIST declared in an
uninitialized memory area.
list input/output
is the name of a _LIST.
Considerations
_NULL^LIST does not deallocate an existing list. Use _DEALLOCATE^LIST to
remove and deallocate all existing list members.
list must not have any members prior to the operation. If it does, these members will
not be accessible later on, because the pointer to them will be initialized.
Example
_LIST (worklist);
CALL _NULL^LIST(worklist);
CALL _NULL^LIST( list );