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:
authorMatt Joyce <matthew.joyce@embedded-brains.de>2022-04-08 12:24:38 +0300
committerSebastian Huber <sebastian.huber@embedded-brains.de>2022-05-13 13:31:56 +0300
commitd83aa402b7ba3e3ec16d247a26cc8343a2e7efa3 (patch)
treeb63fb0a5d73d386f869452806bb7018d50be97ae /newlib/libc/stdio
parente5e36867f851b7355e6221a598f604bcae52597f (diff)
Remove __sinit_locks / __sinit_recursive_mutex
Remove __sinit_lock_acquire() and __sinit_lock_release(). Replace these with __sfp_lock_acquire() and __sfp_lock_release(), respectively. This eliminates a potential deadlock issue between __sinit() and __sfp(). Remove now unused __sinit_recursive_mutex and __lock___sinit_recursive_mutex.
Diffstat (limited to 'newlib/libc/stdio')
-rw-r--r--newlib/libc/stdio/findfp.c19
-rw-r--r--newlib/libc/stdio/local.h2
2 files changed, 3 insertions, 18 deletions
diff --git a/newlib/libc/stdio/findfp.c b/newlib/libc/stdio/findfp.c
index 66867e664..afbdad9b1 100644
--- a/newlib/libc/stdio/findfp.c
+++ b/newlib/libc/stdio/findfp.c
@@ -235,11 +235,11 @@ cleanup_stdio (struct _reent *ptr)
void
__sinit (struct _reent *s)
{
- __sinit_lock_acquire ();
+ __sfp_lock_acquire ();
if (s->__cleanup)
{
- __sinit_lock_release ();
+ __sfp_lock_release ();
return;
}
@@ -268,13 +268,12 @@ __sinit (struct _reent *s)
stderr_init (s->_stderr);
#endif /* _REENT_GLOBAL_STDIO_STREAMS */
- __sinit_lock_release ();
+ __sfp_lock_release ();
}
#ifndef __SINGLE_THREAD__
__LOCK_INIT_RECURSIVE(static, __sfp_recursive_mutex);
-__LOCK_INIT_RECURSIVE(static, __sinit_recursive_mutex);
void
__sfp_lock_acquire (void)
@@ -288,18 +287,6 @@ __sfp_lock_release (void)
__lock_release_recursive (__sfp_recursive_mutex);
}
-void
-__sinit_lock_acquire (void)
-{
- __lock_acquire_recursive (__sinit_recursive_mutex);
-}
-
-void
-__sinit_lock_release (void)
-{
- __lock_release_recursive (__sinit_recursive_mutex);
-}
-
/* Walkable file locking routine. */
static int
__fp_lock (struct _reent * ptr __unused, FILE * fp)
diff --git a/newlib/libc/stdio/local.h b/newlib/libc/stdio/local.h
index 30c534dcd..9c6f63fdb 100644
--- a/newlib/libc/stdio/local.h
+++ b/newlib/libc/stdio/local.h
@@ -287,8 +287,6 @@ char *_llicvt (char *, long long, char);
#else
void __sfp_lock_acquire (void);
void __sfp_lock_release (void);
-void __sinit_lock_acquire (void);
-void __sinit_lock_release (void);
#endif
/* Types used in positional argument support in vfprinf/vfwprintf.