aboutsummaryrefslogtreecommitdiff
path: root/libgfortran/libgfortran.h
diff options
context:
space:
mode:
authorFrancois-Xavier Coudert <fxcoudert@gcc.gnu.org>2007-10-19 04:10:58 +0000
committerJerry DeLisle <jvdelisle@gcc.gnu.org>2007-10-19 04:10:58 +0000
commit1f94e1d88efeb405a810a72ad61ab637becb3761 (patch)
treee8f95541146ff846daf5d9ce7654cb1a96a92a80 /libgfortran/libgfortran.h
parent9a832b6f869f95dea2cc2c4840f6d66ef725d9f6 (diff)
downloadgcc-1f94e1d88efeb405a810a72ad61ab637becb3761.zip
gcc-1f94e1d88efeb405a810a72ad61ab637becb3761.tar.gz
gcc-1f94e1d88efeb405a810a72ad61ab637becb3761.tar.bz2
re PR fortran/33795 (Environment variable GFORTRAN_UNBUFFERED_<number> not working)
2007-10-18 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> Jerry DeLisle <jvdelisle@gcc.gnu.org> PR libfortran/33795 * libgfortran.h: Add unbuffered_preconnected. * io/unix.c (output_stream): Set stream unbuffered flag if options.unbuffered_preconnected has been set. (error_stream): Ditto. * runtime/environ.c (variable_table): Add to environment variable table the entry: GFORTRAN_UNBUFFERED_PRECONNECTED. Co-Authored-By: Jerry DeLisle <jvdelisle@gcc.gnu.org> From-SVN: r129470
Diffstat (limited to 'libgfortran/libgfortran.h')
-rw-r--r--libgfortran/libgfortran.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgfortran/libgfortran.h b/libgfortran/libgfortran.h
index 8d80998..a30ab19 100644
--- a/libgfortran/libgfortran.h
+++ b/libgfortran/libgfortran.h
@@ -349,7 +349,7 @@ typedef struct
int separator_len;
const char *separator;
- int use_stderr, all_unbuffered, default_recl;
+ int use_stderr, all_unbuffered, unbuffered_preconnected, default_recl;
int fpe, dump_core, backtrace;
}
options_t;