Merge from mainline
[official-gcc.git] / libgfortran / io / io.h
blob967a3a2cce5547731b490ec2341f0dd6eec5c383
1 /* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
2 Contributed by Andy Vaught
4 This file is part of the GNU Fortran 95 runtime library (libgfortran).
6 Libgfortran is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 Libgfortran is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with Libgfortran; see the file COPYING. If not, write to
18 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
19 Boston, MA 02110-1301, USA. */
21 /* As a special exception, if you link this library with other files,
22 some of which are compiled with GCC, to produce an executable,
23 this library does not by itself cause the resulting executable
24 to be covered by the GNU General Public License.
25 This exception does not however invalidate any other reasons why
26 the executable file might be covered by the GNU General Public License. */
28 #ifndef GFOR_IO_H
29 #define GFOR_IO_H
31 /* IO library include. */
33 #include <setjmp.h>
34 #include "libgfortran.h"
35 #ifdef HAVE_PRAGMA_WEAK
36 /* Used by gthr.h. */
37 #define SUPPORTS_WEAK 1
38 #endif
40 #ifdef _AIX
41 #undef _LARGE_FILES
42 #define _LARGE_FILE_API
43 #endif
45 #include <gthr.h>
47 #define DEFAULT_TEMPDIR "/tmp"
49 /* Basic types used in data transfers. */
51 typedef enum
52 { BT_NULL, BT_INTEGER, BT_LOGICAL, BT_CHARACTER, BT_REAL,
53 BT_COMPLEX
55 bt;
58 typedef enum
59 { SUCCESS = 1, FAILURE }
60 try;
62 struct st_parameter_dt;
64 typedef struct stream
66 char *(*alloc_w_at) (struct stream *, int *, gfc_offset);
67 char *(*alloc_r_at) (struct stream *, int *, gfc_offset);
68 try (*sfree) (struct stream *);
69 try (*close) (struct stream *);
70 try (*seek) (struct stream *, gfc_offset);
71 try (*truncate) (struct stream *);
72 int (*read) (struct stream *, void *, size_t *);
73 int (*write) (struct stream *, const void *, size_t *);
75 stream;
78 /* Macros for doing file I/O given a stream. */
80 #define sfree(s) ((s)->sfree)(s)
81 #define sclose(s) ((s)->close)(s)
83 #define salloc_r(s, len) ((s)->alloc_r_at)(s, len, -1)
84 #define salloc_w(s, len) ((s)->alloc_w_at)(s, len, -1)
86 #define salloc_r_at(s, len, where) ((s)->alloc_r_at)(s, len, where)
87 #define salloc_w_at(s, len, where) ((s)->alloc_w_at)(s, len, where)
89 #define sseek(s, pos) ((s)->seek)(s, pos)
90 #define struncate(s) ((s)->truncate)(s)
91 #define sread(s, buf, nbytes) ((s)->read)(s, buf, nbytes)
92 #define swrite(s, buf, nbytes) ((s)->write)(s, buf, nbytes)
94 /* The array_loop_spec contains the variables for the loops over index ranges
95 that are encountered. Since the variables can be negative, ssize_t
96 is used. */
98 typedef struct array_loop_spec
100 /* Index counter for this dimension. */
101 ssize_t idx;
103 /* Start for the index counter. */
104 ssize_t start;
106 /* End for the index counter. */
107 ssize_t end;
109 /* Step for the index counter. */
110 ssize_t step;
112 array_loop_spec;
114 /* Representation of a namelist object in libgfortran
116 Namelist Records
117 &GROUPNAME OBJECT=value[s] [,OBJECT=value[s]].../
119 &GROUPNAME OBJECT=value[s] [,OBJECT=value[s]]...&END
121 The object can be a fully qualified, compound name for an instrinsic
122 type, derived types or derived type components. So, a substring
123 a(:)%b(4)%ch(2:4)(1:7) has to be treated correctly in namelist
124 read. Hence full information about the structure of the object has
125 to be available to list_read.c and write.
127 These requirements are met by the following data structures.
129 namelist_info type contains all the scalar information about the
130 object and arrays of descriptor_dimension and array_loop_spec types for
131 arrays. */
133 typedef struct namelist_type
136 /* Object type, stored as GFC_DTYPE_xxxx. */
137 bt type;
139 /* Object name. */
140 char * var_name;
142 /* Address for the start of the object's data. */
143 void * mem_pos;
145 /* Flag to show that a read is to be attempted for this node. */
146 int touched;
148 /* Length of intrinsic type in bytes. */
149 int len;
151 /* Rank of the object. */
152 int var_rank;
154 /* Overall size of the object in bytes. */
155 index_type size;
157 /* Length of character string. */
158 index_type string_length;
160 descriptor_dimension * dim;
161 array_loop_spec * ls;
162 struct namelist_type * next;
164 namelist_info;
166 /* Options for the OPEN statement. */
168 typedef enum
169 { ACCESS_SEQUENTIAL, ACCESS_DIRECT, ACCESS_APPEND,
170 ACCESS_UNSPECIFIED
172 unit_access;
174 typedef enum
175 { ACTION_READ, ACTION_WRITE, ACTION_READWRITE,
176 ACTION_UNSPECIFIED
178 unit_action;
180 typedef enum
181 { BLANK_NULL, BLANK_ZERO, BLANK_UNSPECIFIED }
182 unit_blank;
184 typedef enum
185 { DELIM_NONE, DELIM_APOSTROPHE, DELIM_QUOTE,
186 DELIM_UNSPECIFIED
188 unit_delim;
190 typedef enum
191 { FORM_FORMATTED, FORM_UNFORMATTED, FORM_UNSPECIFIED }
192 unit_form;
194 typedef enum
195 { POSITION_ASIS, POSITION_REWIND, POSITION_APPEND,
196 POSITION_UNSPECIFIED
198 unit_position;
200 typedef enum
201 { STATUS_UNKNOWN, STATUS_OLD, STATUS_NEW, STATUS_SCRATCH,
202 STATUS_REPLACE, STATUS_UNSPECIFIED
204 unit_status;
206 typedef enum
207 { PAD_YES, PAD_NO, PAD_UNSPECIFIED }
208 unit_pad;
210 typedef enum
211 { ADVANCE_YES, ADVANCE_NO, ADVANCE_UNSPECIFIED }
212 unit_advance;
214 typedef enum
215 {READING, WRITING}
216 unit_mode;
218 #define CHARACTER1(name) \
219 char * name; \
220 gfc_charlen_type name ## _len
221 #define CHARACTER2(name) \
222 gfc_charlen_type name ## _len; \
223 char * name
225 #define IOPARM_LIBRETURN_MASK (3 << 0)
226 #define IOPARM_LIBRETURN_OK (0 << 0)
227 #define IOPARM_LIBRETURN_ERROR (1 << 0)
228 #define IOPARM_LIBRETURN_END (2 << 0)
229 #define IOPARM_LIBRETURN_EOR (3 << 0)
230 #define IOPARM_ERR (1 << 2)
231 #define IOPARM_END (1 << 3)
232 #define IOPARM_EOR (1 << 4)
233 #define IOPARM_HAS_IOSTAT (1 << 5)
234 #define IOPARM_HAS_IOMSG (1 << 6)
236 #define IOPARM_COMMON_MASK ((1 << 7) - 1)
238 typedef struct st_parameter_common
240 GFC_INTEGER_4 flags;
241 GFC_INTEGER_4 unit;
242 const char *filename;
243 GFC_INTEGER_4 line;
244 CHARACTER2 (iomsg);
245 GFC_INTEGER_4 *iostat;
247 st_parameter_common;
249 #define IOPARM_OPEN_HAS_RECL_IN (1 << 7)
250 #define IOPARM_OPEN_HAS_FILE (1 << 8)
251 #define IOPARM_OPEN_HAS_STATUS (1 << 9)
252 #define IOPARM_OPEN_HAS_ACCESS (1 << 10)
253 #define IOPARM_OPEN_HAS_FORM (1 << 11)
254 #define IOPARM_OPEN_HAS_BLANK (1 << 12)
255 #define IOPARM_OPEN_HAS_POSITION (1 << 13)
256 #define IOPARM_OPEN_HAS_ACTION (1 << 14)
257 #define IOPARM_OPEN_HAS_DELIM (1 << 15)
258 #define IOPARM_OPEN_HAS_PAD (1 << 16)
260 typedef struct
262 st_parameter_common common;
263 GFC_INTEGER_4 recl_in;
264 CHARACTER2 (file);
265 CHARACTER1 (status);
266 CHARACTER2 (access);
267 CHARACTER1 (form);
268 CHARACTER2 (blank);
269 CHARACTER1 (position);
270 CHARACTER2 (action);
271 CHARACTER1 (delim);
272 CHARACTER2 (pad);
274 st_parameter_open;
276 #define IOPARM_CLOSE_HAS_STATUS (1 << 7)
278 typedef struct
280 st_parameter_common common;
281 CHARACTER1 (status);
283 st_parameter_close;
285 typedef struct
287 st_parameter_common common;
289 st_parameter_filepos;
291 #define IOPARM_INQUIRE_HAS_EXIST (1 << 7)
292 #define IOPARM_INQUIRE_HAS_OPENED (1 << 8)
293 #define IOPARM_INQUIRE_HAS_NUMBER (1 << 9)
294 #define IOPARM_INQUIRE_HAS_NAMED (1 << 10)
295 #define IOPARM_INQUIRE_HAS_NEXTREC (1 << 11)
296 #define IOPARM_INQUIRE_HAS_RECL_OUT (1 << 12)
297 #define IOPARM_INQUIRE_HAS_FILE (1 << 13)
298 #define IOPARM_INQUIRE_HAS_ACCESS (1 << 14)
299 #define IOPARM_INQUIRE_HAS_FORM (1 << 15)
300 #define IOPARM_INQUIRE_HAS_BLANK (1 << 16)
301 #define IOPARM_INQUIRE_HAS_POSITION (1 << 17)
302 #define IOPARM_INQUIRE_HAS_ACTION (1 << 18)
303 #define IOPARM_INQUIRE_HAS_DELIM (1 << 19)
304 #define IOPARM_INQUIRE_HAS_PAD (1 << 20)
305 #define IOPARM_INQUIRE_HAS_NAME (1 << 21)
306 #define IOPARM_INQUIRE_HAS_SEQUENTIAL (1 << 22)
307 #define IOPARM_INQUIRE_HAS_DIRECT (1 << 23)
308 #define IOPARM_INQUIRE_HAS_FORMATTED (1 << 24)
309 #define IOPARM_INQUIRE_HAS_UNFORMATTED (1 << 25)
310 #define IOPARM_INQUIRE_HAS_READ (1 << 26)
311 #define IOPARM_INQUIRE_HAS_WRITE (1 << 27)
312 #define IOPARM_INQUIRE_HAS_READWRITE (1 << 28)
314 typedef struct
316 st_parameter_common common;
317 GFC_INTEGER_4 *exist, *opened, *number, *named;
318 GFC_INTEGER_4 *nextrec, *recl_out;
319 CHARACTER1 (file);
320 CHARACTER2 (access);
321 CHARACTER1 (form);
322 CHARACTER2 (blank);
323 CHARACTER1 (position);
324 CHARACTER2 (action);
325 CHARACTER1 (delim);
326 CHARACTER2 (pad);
327 CHARACTER1 (name);
328 CHARACTER2 (sequential);
329 CHARACTER1 (direct);
330 CHARACTER2 (formatted);
331 CHARACTER1 (unformatted);
332 CHARACTER2 (read);
333 CHARACTER1 (write);
334 CHARACTER2 (readwrite);
336 st_parameter_inquire;
338 struct gfc_unit;
339 struct format_data;
341 #define IOPARM_DT_LIST_FORMAT (1 << 7)
342 #define IOPARM_DT_NAMELIST_READ_MODE (1 << 8)
343 #define IOPARM_DT_HAS_REC (1 << 9)
344 #define IOPARM_DT_HAS_SIZE (1 << 10)
345 #define IOPARM_DT_HAS_IOLENGTH (1 << 11)
346 #define IOPARM_DT_HAS_FORMAT (1 << 12)
347 #define IOPARM_DT_HAS_ADVANCE (1 << 13)
348 #define IOPARM_DT_HAS_INTERNAL_UNIT (1 << 14)
349 #define IOPARM_DT_HAS_NAMELIST_NAME (1 << 15)
350 /* Internal use bit. */
351 #define IOPARM_DT_IONML_SET (1 << 31)
353 typedef struct st_parameter_dt
355 st_parameter_common common;
356 GFC_INTEGER_4 rec;
357 GFC_INTEGER_4 *size, *iolength;
358 gfc_array_char *internal_unit_desc;
359 CHARACTER1 (format);
360 CHARACTER2 (advance);
361 CHARACTER1 (internal_unit);
362 CHARACTER2 (namelist_name);
363 /* Private part of the structure. The compiler just needs
364 to reserve enough space. */
365 union
367 struct
369 void (*transfer) (struct st_parameter_dt *, bt, void *, int,
370 size_t, size_t);
371 struct gfc_unit *current_unit;
372 int item_count; /* Item number in a formatted data transfer. */
373 unit_mode mode;
374 unit_blank blank_status;
375 enum {SIGN_S, SIGN_SS, SIGN_SP} sign_status;
376 int scale_factor;
377 int max_pos; /* Maximum righthand column written to. */
378 /* Number of skips + spaces to be done for T and X-editing. */
379 int skips;
380 /* Number of spaces to be done for T and X-editing. */
381 int pending_spaces;
382 unit_advance advance_status;
383 char reversion_flag; /* Format reversion has occurred. */
384 char first_item;
385 char seen_dollar;
386 char sf_seen_eor;
387 char eor_condition;
388 char no_leading_blank;
389 char nml_delim;
390 char char_flag;
391 char input_complete;
392 char at_eol;
393 char comma_flag;
394 char last_char;
395 /* A namelist specific flag used in the list directed library
396 to flag that calls are being made from namelist read (eg. to
397 ignore comments or to treat '/' as a terminator) */
398 char namelist_mode;
399 /* A namelist specific flag used in the list directed library
400 to flag read errors and return, so that an attempt can be
401 made to read a new object name. */
402 char nml_read_error;
403 /* Storage area for values except for strings. Must be large
404 enough to hold a complex value (two reals) of the largest
405 kind. */
406 char value[32];
407 int repeat_count;
408 int saved_length;
409 int saved_used;
410 bt saved_type;
411 char *saved_string;
412 char *scratch;
413 char *line_buffer;
414 struct format_data *fmt;
415 jmp_buf *eof_jump;
416 namelist_info *ionml;
417 } p;
418 char pad[16 * sizeof (char *) + 32 * sizeof (int)];
419 } u;
421 st_parameter_dt;
423 #undef CHARACTER1
424 #undef CHARACTER2
426 typedef struct
428 unit_access access;
429 unit_action action;
430 unit_blank blank;
431 unit_delim delim;
432 unit_form form;
433 int is_notpadded;
434 unit_position position;
435 unit_status status;
436 unit_pad pad;
438 unit_flags;
441 /* The default value of record length for preconnected units is defined
442 here. This value can be overriden by an environment variable.
443 Default value is 1 Gb. */
445 #define DEFAULT_RECL 1073741824
448 typedef struct gfc_unit
450 int unit_number;
451 stream *s;
453 /* Treap links. */
454 struct gfc_unit *left, *right;
455 int priority;
457 int read_bad, current_record;
458 enum
459 { NO_ENDFILE, AT_ENDFILE, AFTER_ENDFILE }
460 endfile;
462 unit_mode mode;
463 unit_flags flags;
465 /* recl -- Record length of the file.
466 last_record -- Last record number read or written
467 maxrec -- Maximum record number in a direct access file
468 bytes_left -- Bytes left in current record. */
469 gfc_offset recl, last_record, maxrec, bytes_left;
471 __gthread_mutex_t lock;
472 /* Number of threads waiting to acquire this unit's lock.
473 When non-zero, close_unit doesn't only removes the unit
474 from the UNIT_ROOT tree, but doesn't free it and the
475 last of the waiting threads will do that.
476 This must be either atomically increased/decreased, or
477 always guarded by UNIT_LOCK. */
478 int waiting;
479 /* Flag set by close_unit if the unit as been closed.
480 Must be manipulated under unit's lock. */
481 int closed;
483 /* For traversing arrays */
484 array_loop_spec *ls;
485 int rank;
487 int file_len;
488 char *file;
490 gfc_unit;
492 /* Format tokens. Only about half of these can be stored in the
493 format nodes. */
495 typedef enum
497 FMT_NONE = 0, FMT_UNKNOWN, FMT_SIGNED_INT, FMT_ZERO, FMT_POSINT, FMT_PERIOD,
498 FMT_COMMA, FMT_COLON, FMT_SLASH, FMT_DOLLAR, FMT_T, FMT_TR, FMT_TL,
499 FMT_LPAREN, FMT_RPAREN, FMT_X, FMT_S, FMT_SS, FMT_SP, FMT_STRING,
500 FMT_BADSTRING, FMT_P, FMT_I, FMT_B, FMT_BN, FMT_BZ, FMT_O, FMT_Z, FMT_F,
501 FMT_E, FMT_EN, FMT_ES, FMT_G, FMT_L, FMT_A, FMT_D, FMT_H, FMT_END
503 format_token;
506 /* Format nodes. A format string is converted into a tree of these
507 structures, which is traversed as part of a data transfer statement. */
509 typedef struct fnode
511 format_token format;
512 int repeat;
513 struct fnode *next;
514 char *source;
516 union
518 struct
520 int w, d, e;
522 real;
524 struct
526 int length;
527 char *p;
529 string;
531 struct
533 int w, m;
535 integer;
537 int w;
538 int k;
539 int r;
540 int n;
542 struct fnode *child;
546 /* Members for traversing the tree during data transfer. */
548 int count;
549 struct fnode *current;
552 fnode;
555 /* unix.c */
557 extern int move_pos_offset (stream *, int);
558 internal_proto(move_pos_offset);
560 extern int compare_files (stream *, stream *);
561 internal_proto(compare_files);
563 extern stream *open_external (st_parameter_open *, unit_flags *);
564 internal_proto(open_external);
566 extern stream *open_internal (char *, int);
567 internal_proto(open_internal);
569 extern stream *input_stream (void);
570 internal_proto(input_stream);
572 extern stream *output_stream (void);
573 internal_proto(output_stream);
575 extern stream *error_stream (void);
576 internal_proto(error_stream);
578 extern int compare_file_filename (gfc_unit *, const char *, int);
579 internal_proto(compare_file_filename);
581 extern gfc_unit *find_file (const char *file, gfc_charlen_type file_len);
582 internal_proto(find_file);
584 extern void flush_all_units (void);
585 internal_proto(flush_all_units);
587 extern int stream_at_bof (stream *);
588 internal_proto(stream_at_bof);
590 extern int stream_at_eof (stream *);
591 internal_proto(stream_at_eof);
593 extern int delete_file (gfc_unit *);
594 internal_proto(delete_file);
596 extern int file_exists (const char *file, gfc_charlen_type file_len);
597 internal_proto(file_exists);
599 extern const char *inquire_sequential (const char *, int);
600 internal_proto(inquire_sequential);
602 extern const char *inquire_direct (const char *, int);
603 internal_proto(inquire_direct);
605 extern const char *inquire_formatted (const char *, int);
606 internal_proto(inquire_formatted);
608 extern const char *inquire_unformatted (const char *, int);
609 internal_proto(inquire_unformatted);
611 extern const char *inquire_read (const char *, int);
612 internal_proto(inquire_read);
614 extern const char *inquire_write (const char *, int);
615 internal_proto(inquire_write);
617 extern const char *inquire_readwrite (const char *, int);
618 internal_proto(inquire_readwrite);
620 extern gfc_offset file_length (stream *);
621 internal_proto(file_length);
623 extern gfc_offset file_position (stream *);
624 internal_proto(file_position);
626 extern int is_seekable (stream *);
627 internal_proto(is_seekable);
629 extern int is_preconnected (stream *);
630 internal_proto(is_preconnected);
632 extern void flush_if_preconnected (stream *);
633 internal_proto(flush_if_preconnected);
635 extern void empty_internal_buffer(stream *);
636 internal_proto(empty_internal_buffer);
638 extern try flush (stream *);
639 internal_proto(flush);
641 extern int stream_isatty (stream *);
642 internal_proto(stream_isatty);
644 extern char * stream_ttyname (stream *);
645 internal_proto(stream_ttyname);
647 extern gfc_offset stream_offset (stream *s);
648 internal_proto(stream_offset);
650 extern int unit_to_fd (int);
651 internal_proto(unit_to_fd);
653 extern int unpack_filename (char *, const char *, int);
654 internal_proto(unpack_filename);
656 /* unit.c */
658 /* Maximum file offset, computed at library initialization time. */
659 extern gfc_offset max_offset;
660 internal_proto(max_offset);
662 /* Unit tree root. */
663 extern gfc_unit *unit_root;
664 internal_proto(unit_root);
666 extern __gthread_mutex_t unit_lock;
667 internal_proto(unit_lock);
669 extern int close_unit (gfc_unit *);
670 internal_proto(close_unit);
672 extern int is_internal_unit (st_parameter_dt *);
673 internal_proto(is_internal_unit);
675 extern int is_array_io (st_parameter_dt *);
676 internal_proto(is_array_io);
678 extern gfc_unit *find_unit (int);
679 internal_proto(find_unit);
681 extern gfc_unit *find_or_create_unit (int);
682 internal_proto(find_unit);
684 extern gfc_unit *get_unit (st_parameter_dt *, int);
685 internal_proto(get_unit);
687 extern void unlock_unit (gfc_unit *);
688 internal_proto(unlock_unit);
690 /* open.c */
692 extern void test_endfile (gfc_unit *);
693 internal_proto(test_endfile);
695 extern gfc_unit *new_unit (st_parameter_open *, gfc_unit *, unit_flags *);
696 internal_proto(new_unit);
698 /* format.c */
700 extern void parse_format (st_parameter_dt *);
701 internal_proto(parse_format);
703 extern const fnode *next_format (st_parameter_dt *);
704 internal_proto(next_format);
706 extern void unget_format (st_parameter_dt *, const fnode *);
707 internal_proto(unget_format);
709 extern void format_error (st_parameter_dt *, const fnode *, const char *);
710 internal_proto(format_error);
712 extern void free_format_data (st_parameter_dt *);
713 internal_proto(free_format_data);
715 /* transfer.c */
717 #define SCRATCH_SIZE 300
719 extern const char *type_name (bt);
720 internal_proto(type_name);
722 extern void *read_block (st_parameter_dt *, int *);
723 internal_proto(read_block);
725 extern void *write_block (st_parameter_dt *, int);
726 internal_proto(write_block);
728 extern gfc_offset next_array_record (st_parameter_dt *, array_loop_spec *);
729 internal_proto(next_array_record);
731 extern gfc_offset init_loop_spec (gfc_array_char *, array_loop_spec *);
732 internal_proto(init_loop_spec);
734 extern void next_record (st_parameter_dt *, int);
735 internal_proto(next_record);
737 /* read.c */
739 extern void set_integer (void *, GFC_INTEGER_LARGEST, int);
740 internal_proto(set_integer);
742 extern GFC_UINTEGER_LARGEST max_value (int, int);
743 internal_proto(max_value);
745 extern int convert_real (st_parameter_dt *, void *, const char *, int);
746 internal_proto(convert_real);
748 extern void read_a (st_parameter_dt *, const fnode *, char *, int);
749 internal_proto(read_a);
751 extern void read_f (st_parameter_dt *, const fnode *, char *, int);
752 internal_proto(read_f);
754 extern void read_l (st_parameter_dt *, const fnode *, char *, int);
755 internal_proto(read_l);
757 extern void read_x (st_parameter_dt *, int);
758 internal_proto(read_x);
760 extern void read_radix (st_parameter_dt *, const fnode *, char *, int, int);
761 internal_proto(read_radix);
763 extern void read_decimal (st_parameter_dt *, const fnode *, char *, int);
764 internal_proto(read_decimal);
766 /* list_read.c */
768 extern void list_formatted_read (st_parameter_dt *, bt, void *, int, size_t,
769 size_t);
770 internal_proto(list_formatted_read);
772 extern void finish_list_read (st_parameter_dt *);
773 internal_proto(finish_list_read);
775 extern void namelist_read (st_parameter_dt *);
776 internal_proto(namelist_read);
778 extern void namelist_write (st_parameter_dt *);
779 internal_proto(namelist_write);
781 /* write.c */
783 extern void write_a (st_parameter_dt *, const fnode *, const char *, int);
784 internal_proto(write_a);
786 extern void write_b (st_parameter_dt *, const fnode *, const char *, int);
787 internal_proto(write_b);
789 extern void write_d (st_parameter_dt *, const fnode *, const char *, int);
790 internal_proto(write_d);
792 extern void write_e (st_parameter_dt *, const fnode *, const char *, int);
793 internal_proto(write_e);
795 extern void write_en (st_parameter_dt *, const fnode *, const char *, int);
796 internal_proto(write_en);
798 extern void write_es (st_parameter_dt *, const fnode *, const char *, int);
799 internal_proto(write_es);
801 extern void write_f (st_parameter_dt *, const fnode *, const char *, int);
802 internal_proto(write_f);
804 extern void write_i (st_parameter_dt *, const fnode *, const char *, int);
805 internal_proto(write_i);
807 extern void write_l (st_parameter_dt *, const fnode *, char *, int);
808 internal_proto(write_l);
810 extern void write_o (st_parameter_dt *, const fnode *, const char *, int);
811 internal_proto(write_o);
813 extern void write_x (st_parameter_dt *, int, int);
814 internal_proto(write_x);
816 extern void write_z (st_parameter_dt *, const fnode *, const char *, int);
817 internal_proto(write_z);
819 extern void list_formatted_write (st_parameter_dt *, bt, void *, int, size_t,
820 size_t);
821 internal_proto(list_formatted_write);
823 /* error.c */
824 extern try notify_std (int, const char *);
825 internal_proto(notify_std);
827 /* size_from_kind.c */
828 extern size_t size_from_real_kind (int);
829 internal_proto(size_from_real_kind);
831 extern size_t size_from_complex_kind (int);
832 internal_proto(size_from_complex_kind);
834 /* lock.c */
835 extern void free_ionml (st_parameter_dt *);
836 internal_proto(free_ionml);
838 static inline void
839 inc_waiting_locked (gfc_unit *u)
841 #ifdef HAVE_SYNC_FETCH_AND_ADD
842 (void) __sync_fetch_and_add (&u->waiting, 1);
843 #else
844 u->waiting++;
845 #endif
848 static inline int
849 predec_waiting_locked (gfc_unit *u)
851 #ifdef HAVE_SYNC_FETCH_AND_ADD
852 return __sync_add_and_fetch (&u->waiting, -1);
853 #else
854 return --u->waiting;
855 #endif
858 static inline void
859 dec_waiting_unlocked (gfc_unit *u)
861 #ifdef HAVE_SYNC_FETCH_AND_ADD
862 (void) __sync_fetch_and_add (&u->waiting, -1);
863 #else
864 __gthread_mutex_lock (&unit_lock);
865 u->waiting--;
866 __gthread_mutex_unlock (&unit_lock);
867 #endif
870 #endif