Initiates completion operations for an I/O request. Allows
program processing to continue before an I/O operation completes.
Use |
 |
The IODONTWAIT intrinsic initiates completion operations for
an I/O request and returns control to the calling process even if
no I/O has completed.
A call to either IODONTWAIT or its companion intrinsic, IOWAIT,
must follow every read or write request posted against a file that
was opened with NOWAIT I/O specified in the FOPEN or HPFOPEN call.
(The process must have been running in privileged mode for NOWAIT
I/O to have been specified.)
When NOWAIT I/O is used, the parameters associated with the
IODONTWAIT or IOWAIT call receive the values that normally would
have been returned in the read or write request being processed.
See the parameter explanations for what these values represent.
If you call IODONTWAIT and no I/O has completed, control is
returned to the calling process, CCE is returned, and the result
of IODONTWAIT is zero.
If you call IOWAIT and no I/O has completed, the calling process
is suspended until some I/O completes.