summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog11
-rw-r--r--gcc/collect2.c5
-rw-r--r--gcc/gcc.c5
-rw-r--r--gcc/gcov-dump.c5
-rw-r--r--gcc/gcov.c5
-rw-r--r--gcc/gen-protos.c5
-rw-r--r--gcc/gensupport.c5
-rw-r--r--gcc/java/ChangeLog7
-rw-r--r--gcc/java/gjavah.c5
-rw-r--r--gcc/java/jcf-dump.c5
-rw-r--r--gcc/java/jv-scan.c5
-rw-r--r--gcc/java/jvgenmain.c5
-rw-r--r--gcc/protoize.c5
-rw-r--r--gcc/toplev.c5
14 files changed, 78 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b392d668df3..0c4c36faf96 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,14 @@
+2005-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * collect2.c (main): Unlock the stdio streams.
+ * gcc.c (main): Likewise.
+ * gcov-dump.c (main): Likewise.
+ * gcov.c (main): Likewise.
+ * gen-protos.c (main): Likewise.
+ * gensupport.c (init_md_reader_args_cb): Likewise.
+ * protoize.c (main): Likewise.
+ * toplev.c (general_init): Likewise.
+
2005-04-24 Jakub Jelinek <jakub@redhat.com>
PR middle-end/20991
diff --git a/gcc/collect2.c b/gcc/collect2.c
index f95fe4dbbf4..9dfaf62c9ed 100644
--- a/gcc/collect2.c
+++ b/gcc/collect2.c
@@ -831,6 +831,11 @@ main (int argc, char **argv)
signal (SIGCHLD, SIG_DFL);
#endif
+ /* Unlock the stdio streams. */
+ unlock_stream (stdin);
+ unlock_stream (stdout);
+ unlock_stream (stderr);
+
gcc_init_libintl ();
/* Do not invoke xcalloc before this point, since locale needs to be
diff --git a/gcc/gcc.c b/gcc/gcc.c
index 373b6179bde..d3a0ecff05d 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -5995,6 +5995,11 @@ main (int argc, const char **argv)
GCC_DRIVER_HOST_INITIALIZATION;
#endif
+ /* Unlock the stdio streams. */
+ unlock_stream (stdin);
+ unlock_stream (stdout);
+ unlock_stream (stderr);
+
gcc_init_libintl ();
if (signal (SIGINT, SIG_IGN) != SIG_IGN)
diff --git a/gcc/gcov-dump.c b/gcc/gcov-dump.c
index 859fdb73310..514004e771a 100644
--- a/gcc/gcov-dump.c
+++ b/gcc/gcov-dump.c
@@ -77,6 +77,11 @@ main (int argc ATTRIBUTE_UNUSED, char **argv)
{
int opt;
+ /* Unlock the stdio streams. */
+ unlock_stream (stdin);
+ unlock_stream (stdout);
+ unlock_stream (stderr);
+
while ((opt = getopt_long (argc, argv, "hlpv", options, NULL)) != -1)
{
switch (opt)
diff --git a/gcc/gcov.c b/gcc/gcov.c
index 66aa742fdd6..6b8f3370c39 100644
--- a/gcc/gcov.c
+++ b/gcc/gcov.c
@@ -347,6 +347,11 @@ main (int argc, char **argv)
{
int argno;
+ /* Unlock the stdio streams. */
+ unlock_stream (stdin);
+ unlock_stream (stdout);
+ unlock_stream (stderr);
+
gcc_init_libintl ();
argno = process_args (argc, argv);
diff --git a/gcc/gen-protos.c b/gcc/gen-protos.c
index b8fa31bfe1c..d60a2098d06 100644
--- a/gcc/gen-protos.c
+++ b/gcc/gen-protos.c
@@ -139,6 +139,11 @@ main (int argc ATTRIBUTE_UNUSED, char **argv)
while (i > 0 && argv[0][i-1] != '/') --i;
progname = &argv[0][i];
+ /* Unlock the stdio streams. */
+ unlock_stream (stdin);
+ unlock_stream (stdout);
+ unlock_stream (stderr);
+
INIT_SSTRING (&linebuf);
fprintf (outf, "struct fn_decl std_protos[] = {\n");
diff --git a/gcc/gensupport.c b/gcc/gensupport.c
index dbf0aab6922..8c65a3e7a14 100644
--- a/gcc/gensupport.c
+++ b/gcc/gensupport.c
@@ -906,6 +906,11 @@ init_md_reader_args_cb (int argc, char **argv, bool (*parse_opt)(const char *))
char *lastsl;
rtx desc;
+ /* Unlock the stdio streams. */
+ unlock_stream (stdin);
+ unlock_stream (stdout);
+ unlock_stream (stderr);
+
for (i = 1; i < argc; i++)
{
if (argv[i][0] != '-')
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog
index 251b8b56379..6a719d4c6aa 100644
--- a/gcc/java/ChangeLog
+++ b/gcc/java/ChangeLog
@@ -1,3 +1,10 @@
+2005-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * gjavah.c (main): Unlock the stdio streams.
+ * jcf-dump.c (main): Likewise.
+ * jv-scan.c (main): Likewise.
+ * jvgenmain.c (main): Likewise.
+
2005-04-23 DJ Delorie <dj@redhat.com>
* class.c, decl.c, expr.c, jcf-io.c, jcf-parse.c, jv-scan.c,
diff --git a/gcc/java/gjavah.c b/gcc/java/gjavah.c
index ca38b9e92f9..98d20355ed1 100644
--- a/gcc/java/gjavah.c
+++ b/gcc/java/gjavah.c
@@ -2388,6 +2388,11 @@ main (int argc, char** argv)
int emit_dependencies = 0, suppress_output = 0;
int opt;
+ /* Unlock the stdio streams. */
+ unlock_stream (stdin);
+ unlock_stream (stdout);
+ unlock_stream (stderr);
+
gcc_init_libintl ();
if (argc <= 1)
diff --git a/gcc/java/jcf-dump.c b/gcc/java/jcf-dump.c
index 9bd7650b661..cd6f709fbb0 100644
--- a/gcc/java/jcf-dump.c
+++ b/gcc/java/jcf-dump.c
@@ -940,6 +940,11 @@ main (int argc, char** argv)
JCF jcf[1];
int argi, opt;
+ /* Unlock the stdio streams. */
+ unlock_stream (stdin);
+ unlock_stream (stdout);
+ unlock_stream (stderr);
+
gcc_init_libintl ();
if (argc <= 1)
diff --git a/gcc/java/jv-scan.c b/gcc/java/jv-scan.c
index fa02c593eae..a7522840589 100644
--- a/gcc/java/jv-scan.c
+++ b/gcc/java/jv-scan.c
@@ -147,6 +147,11 @@ main (int argc, char **argv)
/* Default for output */
out = stdout;
+ /* Unlock the stdio streams. */
+ unlock_stream (stdin);
+ unlock_stream (stdout);
+ unlock_stream (stderr);
+
gcc_init_libintl ();
/* Process options first. We use getopt_long and not
diff --git a/gcc/java/jvgenmain.c b/gcc/java/jvgenmain.c
index 1e228a16191..5c651b4164a 100644
--- a/gcc/java/jvgenmain.c
+++ b/gcc/java/jvgenmain.c
@@ -58,6 +58,11 @@ main (int argc, char **argv)
const char *mangled_classname;
int i, last_arg;
+ /* Unlock the stdio streams. */
+ unlock_stream (stdin);
+ unlock_stream (stdout);
+ unlock_stream (stderr);
+
gcc_init_libintl ();
if (argc < 2)
diff --git a/gcc/protoize.c b/gcc/protoize.c
index b9e100c7fc7..bb0420138fb 100644
--- a/gcc/protoize.c
+++ b/gcc/protoize.c
@@ -4391,6 +4391,11 @@ main (int argc, char **const argv)
signal (SIGCHLD, SIG_DFL);
#endif
+ /* Unlock the stdio streams. */
+ unlock_stream (stdin);
+ unlock_stream (stdout);
+ unlock_stream (stderr);
+
gcc_init_libintl ();
cwd_buffer = getpwd ();
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 19411e148a0..cea3bb470f3 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -1618,6 +1618,11 @@ general_init (const char *argv0)
hex_init ();
+ /* Unlock the stdio streams. */
+ unlock_stream (stdin);
+ unlock_stream (stdout);
+ unlock_stream (stderr);
+
gcc_init_libintl ();
/* Initialize the diagnostics reporting machinery, so option parsing