[glibc] htl: move __pthread_default_condattr into libc.

Samuel Thibault sthibaul@sourceware.org
Mon Dec 9 01:26:22 GMT 2024


https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=7ded100d36a8decd0409f695bab5bee5e35395a6

commit 7ded100d36a8decd0409f695bab5bee5e35395a6
Author: gfleury <gfleury@disroot.org>
Date:   Tue Nov 26 22:53:24 2024 +0200

    htl: move __pthread_default_condattr into libc.
    
    Signed-off-by: gfleury <gfleury@disroot.org>
    Message-ID: <20241126205329.2215295-3-gfleury@disroot.org>

Diff:
---
 htl/Makefile          | 2 +-
 htl/Versions          | 1 +
 htl/pt-internal.h     | 1 +
 sysdeps/htl/pt-cond.c | 1 +
 4 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/htl/Makefile b/htl/Makefile
index 2658f2470c..5f9b2ba24d 100644
--- a/htl/Makefile
+++ b/htl/Makefile
@@ -92,7 +92,6 @@ libpthread-routines := \
   pt-rwlock-timedrdlock \
   pt-rwlock-timedwrlock \
   pt-rwlock-unlock \
-  pt-cond \
   pt-condattr-init \
   pt-condattr-getclock \
   pt-condattr-getpshared \
@@ -205,6 +204,7 @@ routines := \
   pt-attr-setstack \
   pt-attr-setstackaddr \
   pt-attr-setstacksize \
+  pt-cond \
   pt-condattr-destroy \
   pt-getschedparam \
   pt-nthreads \
diff --git a/htl/Versions b/htl/Versions
index 12399ba147..7aa8a1fef7 100644
--- a/htl/Versions
+++ b/htl/Versions
@@ -83,6 +83,7 @@ libc {
     __pthread_attr_setstacksize;
     __pthread_attr_setstackaddr;
     __pthread_attr_setstack;
+    __pthread_default_condattr;
   }
 }
 
diff --git a/htl/pt-internal.h b/htl/pt-internal.h
index bdc8b83dc9..23fdb73f68 100644
--- a/htl/pt-internal.h
+++ b/htl/pt-internal.h
@@ -329,6 +329,7 @@ extern const struct __pthread_rwlockattr __pthread_default_rwlockattr;
 
 /* Default condition attributes.  */
 extern const struct __pthread_condattr __pthread_default_condattr;
+libc_hidden_proto (__pthread_default_condattr)
 
 /* Semaphore encoding.
    See nptl implementation for the details.  */
diff --git a/sysdeps/htl/pt-cond.c b/sysdeps/htl/pt-cond.c
index 5c66c22c3e..42b1812153 100644
--- a/sysdeps/htl/pt-cond.c
+++ b/sysdeps/htl/pt-cond.c
@@ -25,3 +25,4 @@ const struct __pthread_condattr __pthread_default_condattr = {
   __pshared: PTHREAD_PROCESS_PRIVATE,
   __clock: CLOCK_REALTIME
 };
+libc_hidden_data_def (__pthread_default_condattr)


More information about the Glibc-cvs mailing list