Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2004-01-30 23:32:04 +0300
committerJeff Johnston <jjohnstn@redhat.com>2004-01-30 23:32:04 +0300
commitff41498a1931f86da1089e8d0bb88dc4f3973273 (patch)
tree5c7e9b7b35d1899ddea4450aa4f7561c1ca27271
parent1a4f1aef1fd1f58e2f40fc74c57d005cf19d7cc4 (diff)
2004-01-30 Thomas Pfaff <tpfaff@gmx.net>
Jeff Johnston <jjohnstn@redhat.com> * libc/stdio/fwalk.c (_fwalk): Traverse the given reentrancy struct for std streams and traverse the global reeentrancy struct for all other streams.
-rw-r--r--newlib/ChangeLog7
-rw-r--r--newlib/libc/stdio/fwalk.c8
2 files changed, 15 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 5757512f2..7ea7d1550 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,10 @@
+2004-01-30 Thomas Pfaff <tpfaff@gmx.net>
+ Jeff Johnston <jjohnstn@redhat.com>
+
+ * libc/stdio/fwalk.c (_fwalk): Traverse the given reentrancy
+ struct for std streams and traverse the global reeentrancy
+ struct for all other streams.
+
2004-01-27 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdlib/atexit.c: Protect global atexit list with a
diff --git a/newlib/libc/stdio/fwalk.c b/newlib/libc/stdio/fwalk.c
index 516283466..4d37499dd 100644
--- a/newlib/libc/stdio/fwalk.c
+++ b/newlib/libc/stdio/fwalk.c
@@ -35,9 +35,17 @@ _fwalk (ptr, function)
register int n, ret = 0;
register struct _glue *g;
+ /* Must traverse given list for std streams. */
for (g = &ptr->__sglue; g != NULL; g = g->_next)
for (fp = g->_iobs, n = g->_niobs; --n >= 0; fp++)
if (fp->_flags != 0)
ret |= (*function) (fp);
+
+ /* Must traverse global list for all other streams. */
+ for (g = &_GLOBAL_REENT->__sglue; g != NULL; g = g->_next)
+ for (fp = g->_iobs, n = g->_niobs; --n >= 0; fp++)
+ if (fp->_flags != 0)
+ ret |= (*function) (fp);
+
return ret;
}