HP Fortran Programmer's Reference (September 2007)

I/O runtime error messages
Runtime I/O errors
Appendix A 669
980 NAMELIST I/O
ATTEMPTED ON
UNFORMATTED FILE
An illegal
namelist-directed I/O
operation was attempted
on an unformatted
(binary) file.
Specify
FORM='FORMATTED'
in OPEN statement, or
use namelist-directed
I/O only on formatted
files.
1010 OPEN WITH ILLEGAL
PAD SPECIFIER
ATTEMPTED
An attempt was made to
open a file with an illegal
value specified for the
PAD= specifier.
Specify either PAD='YES'
or PAD='NO'.
1011 OPEN WITH ILLEGAL
POSITION SPECIFIER
ATTEMPTED
An attempt was made to
open a file with an illegal
value specified for the
POSITION= specifier.
Specify
POSITION='ASIS',
POSITION='REWIND' or
POSITION='APPEND'.
1012 OPEN WITH ILLEGAL
DELIM SPECIFIER
ATTEMPTED
An attempt was made to
open a file with an illegal
value specified for the
DELIM= specifier.
Specify DELIM=
'APOSTROPHE',
DELIM='QUOTE' or
DELIM='NONE'.
1013 OPEN WITH ILLEGAL
ACTION SPECIFIER
ATTEMPTED
An attempt was made to
open a file with an illegal
value specified for the
ACTION= specifier.
Specify
ACTION='READ',
ACTION='WRITE' or
ACTION='READWRITE'.
1014 WRITE PAST 2GIG
LIMIT FAILED, IS
HUGE FOR ENTRY
A Fortran I/O operation
failed at exactly the 2
Gigabyte mark. This
usually means that the
filesystem which the I/O
operation was associated
with is not enabled for
large files..
If you discover that a
filesystem you are
performing an I/O
operation on is not
enabled for large files,
please have your
administrator enable
large files via the fsadm
(1M) command.
Table A-1 Runtime I/O errors (Continued)
Error
no.
Error message Description Action