HP Fortran Programmer's Reference (September 2007)

I/O runtime error messages
Runtime I/O errors
Appendix A 663
910 ACCESS PAST END OF
RECORD ATTEMPTED
Tried to do I/O on record
of a file past beginning or
end of record.
Perform I/O operation
within bounds of the
record, or increase record
length.
912 ERROR IN LIST I/O
READ OF COMPLEX
DATA
While reading complex
data, one of the following
problems has occurred:
no left parenthesis and
no repeat value; repeat
value was found but no
asterisk; or no closing
right parenthesis.
Change input data to
correspond to syntax
expected by list-directed
input of complex
numbers, or use input
statement corresponding
to syntax of input data.
913 OUT OF FREE SPACE Library cannot allocate
an I/O block (from an
OPEN statement), parse
array (for formats
assembled at run-time),
file name string (from
OPEN) characters from
list-directed read, or file
buffer. The program may
be trying to overwrite a
shared memory segment
defined by another
process.
Allocate more free space
in the heap area, open
fewer files, use FORMAT
statements in place of
assembling formats at
run time in character
arrays, or reduce the
maximum size of file
records.
914 ACCESS OF
UNCONNECTED UNIT
ATTEMPTED
Unit specified in I/O
statement has not
previously been
connected to anything.
Connect unit using the
OPEN statement before
attempting I/O on it, or
perform I/O on another,
already connected, unit.
Table A-1 Runtime I/O errors (Continued)
Error
no.
Error message Description Action