Distributed Systems Network Management (DSNM) Subsystem Interface Development Guide

_CI^REPLYADDRESS
A-28
109759Distributed Systems Network Management (DSNM) Subsystem Interface
Development Guide
DSNM Library Services
_CI^REPLYADDRESS
_CI^REPLYADDRESS is the type INT(32) extended address of the reply buffer
containing information read from a CI on completion of a _SEND^CI.
replyaddress output
INT(32)
is the extended address of the reply buffer.
ciid input
is the CIID structure (declared with _CI^ID) identifying an open CI.
Example
In the following example, cireply is set to point to the reply buffer containing data
returned by the most-recently completed I/O operation:
INT .EXT cireply;
IF _ON (_LAST^EVENTS, _EV^IODONE )
THEN
BEGIN
@cireply := _CI^REPLYADDRESS (_LAST^CI^ID);
...
END;
@replyaddress := _CI^REPLYADDRESS ( ciid )