diff options
author | Jerry DeLisle <jvdelisle@gcc.gnu.org> | 2009-06-07 19:00:47 +0000 |
---|---|---|
committer | Jerry DeLisle <jvdelisle@gcc.gnu.org> | 2009-06-07 19:00:47 +0000 |
commit | dcfddbd49c64dc1e8b57e3abe1b941bdd74b8f70 (patch) | |
tree | a644300144767eca9a438e4638477cda691850c5 /libgfortran/io/io.h | |
parent | 9ad55c33ae2d0c410fbc563fd59e8edb37a48b8b (diff) | |
download | gcc-dcfddbd49c64dc1e8b57e3abe1b941bdd74b8f70.zip gcc-dcfddbd49c64dc1e8b57e3abe1b941bdd74b8f70.tar.gz gcc-dcfddbd49c64dc1e8b57e3abe1b941bdd74b8f70.tar.bz2 |
re PR fortran/40008 (F2008: Add NEWUNIT= for OPEN statement)
2009-06-07 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libfortran/40008
* libgfortran.h: Define IOPARM_OPEN_HAS_NEWUNIT.
* io/open.c (st_open): Don't error on negative unit number if NEWUNIT
was specified. If NEWUNIT is specified, call new function to get the
unique unit number and assign it.
* io/io.h (st_parameter_open): Add pointer to newunit. Add prototype for
next_available_newunit. Add prototype for new function,
get_unique_unit_number.
* io/unit.c: Declare next_available_newunit. Define the first newunit
number. (init_units): Initialize next_available_unit.
(get_unique_unit_number): New function. Fix whitespace and comments.
* io/transfer.c (data_transfer_init): Update error message to not be
specific to OPEN statements.
From-SVN: r148253
Diffstat (limited to 'libgfortran/io/io.h')
-rw-r--r-- | libgfortran/io/io.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libgfortran/io/io.h b/libgfortran/io/io.h index 22e097a..9e1e45e 100644 --- a/libgfortran/io/io.h +++ b/libgfortran/io/io.h @@ -297,6 +297,7 @@ typedef struct CHARACTER2 (round); CHARACTER1 (sign); CHARACTER2 (asynchronous); + GFC_INTEGER_4 *newunit; } st_parameter_open; @@ -794,6 +795,10 @@ internal_proto(unpack_filename); extern gfc_offset max_offset; internal_proto(max_offset); +/* Unit number to be assigned when NEWUNIT is used in an OPEN statement. */ +extern GFC_INTEGER_4 next_available_newunit; +internal_proto(next_available_newunit); + /* Unit tree root. */ extern gfc_unit *unit_root; internal_proto(unit_root); @@ -831,6 +836,9 @@ internal_proto (finish_last_advance_record); extern int unit_truncate (gfc_unit *, gfc_offset, st_parameter_common *); internal_proto (unit_truncate); +extern GFC_INTEGER_4 get_unique_unit_number (st_parameter_open *); +internal_proto(get_unique_unit_number); + /* open.c */ extern gfc_unit *new_unit (st_parameter_open *, gfc_unit *, unit_flags *); |