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-03-31 01:11:53 +0400
committerJeff Johnston <jjohnstn@redhat.com>2004-03-31 01:11:53 +0400
commitcacc0d4421219bf48aca9ce3b0e13344c1ed753e (patch)
tree150fb890de2ae3f9e92a1d59655a656bfd7b5664
parente9db9325428cd78d3af6a01a14257e97b5d0920d (diff)
2003-03-30 Thomas Pfaff <tpfaff@gmx.net>
* libc/stdio/findfp.c (__fp_lock_all): Add call to __sfp_lock_acquire. (__fp_unlock_all): Add call to __sfp_lock_release.
-rw-r--r--newlib/ChangeLog6
-rw-r--r--newlib/libc/stdio/findfp.c4
2 files changed, 10 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 9f2f066e2..04832e559 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,9 @@
+2003-03-30 Thomas Pfaff <tpfaff@gmx.net>
+
+ * libc/stdio/findfp.c (__fp_lock_all): Add call to
+ __sfp_lock_acquire.
+ (__fp_unlock_all): Add call to __sfp_lock_release.
+
2004-03-25 Thomas Pfaff <tpfaff@gmx.net>
* libc/stdio/fclose.c (fclose): Protect file pointer list when
diff --git a/newlib/libc/stdio/findfp.c b/newlib/libc/stdio/findfp.c
index 10f01b271..f8b67f76d 100644
--- a/newlib/libc/stdio/findfp.c
+++ b/newlib/libc/stdio/findfp.c
@@ -232,6 +232,8 @@ __fp_unlock (ptr)
void
__fp_lock_all ()
{
+ __sfp_lock_acquire ();
+
(void) _fwalk (_REENT, __fp_lock);
}
@@ -239,5 +241,7 @@ void
__fp_unlock_all ()
{
(void) _fwalk (_REENT, __fp_unlock);
+
+ __sfp_lock_release ();
}
#endif