public inbox for newlib-cvs@sourceware.org
help / color / mirror / Atom feed
* [newlib-cygwin] Reentrancy, conditionally provide default __getreent() implementation
@ 2023-09-11  8:04 Sebastian Huber
  0 siblings, 0 replies; only message in thread
From: Sebastian Huber @ 2023-09-11  8:04 UTC (permalink / raw)
  To: newlib-cvs

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=7a1c717c8bba1d046c37c75c3d8c110aeba3cc09

commit 7a1c717c8bba1d046c37c75c3d8c110aeba3cc09
Author: Pekka Seppänen <pexu@sourceware.mail.kapsi.fi>
Date:   Wed Aug 30 12:16:32 2023 +0300

    Reentrancy, conditionally provide default __getreent() implementation
    
    Conditionally provide default __getreent() implementation only if
    _REENT_THREAD_LOCAL is not defined.  If struct _reent is replaced by
    dedicated thread-local objects neither the structure nor _impure_ptr is
    available.

Diff:
---
 newlib/libc/reent/getreent.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/newlib/libc/reent/getreent.c b/newlib/libc/reent/getreent.c
index 5fa98e96b..86bb04fb9 100644
--- a/newlib/libc/reent/getreent.c
+++ b/newlib/libc/reent/getreent.c
@@ -9,6 +9,8 @@ int _dummy_getreent;
 #include <_ansi.h>
 #include <reent.h>
 
+#ifndef _REENT_THREAD_LOCAL
+
 #ifdef __getreent
 #undef __getreent
 #endif
@@ -19,4 +21,6 @@ __getreent (void)
   return _impure_ptr;
 }
 
+#endif /* !_REENT_THREAD_LOCAL */
+
 #endif

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-09-11  8:04 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-11  8:04 [newlib-cygwin] Reentrancy, conditionally provide default __getreent() implementation Sebastian Huber

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).