commit-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[hurd,commited 02/13] htl: move __pthread_default_attr into libc


From: Samuel Thibault
Subject: [hurd,commited 02/13] htl: move __pthread_default_attr into libc
Date: Tue, 19 Nov 2024 01:56:23 +0100

From: gfleury <gfleury@disroot.org>

Signed-off-by: gfleury <gfleury@disroot.org>
---
 htl/Makefile          | 2 +-
 htl/Versions          | 1 +
 htl/pt-internal.h     | 1 +
 sysdeps/htl/pt-attr.c | 1 +
 4 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/htl/Makefile b/htl/Makefile
index bd1afe8009..beb39e5fea 100644
--- a/htl/Makefile
+++ b/htl/Makefile
@@ -25,7 +25,6 @@ SYSDEPS := lockfile
 LCLHDRS :=
 
 libpthread-routines := \
-  pt-attr \
   pt-attr-getguardsize \
   pt-attr-getscope \
   pt-attr-getstack \
@@ -198,6 +197,7 @@ routines := \
   forward \
   htlfreeres \
   libc_pthread_init \
+  pt-attr \
   pt-attr-destroy \
   pt-attr-getdetachstate \
   pt-attr-getinheritsched \
diff --git a/htl/Versions b/htl/Versions
index 34b1f87a5f..05ef80548f 100644
--- a/htl/Versions
+++ b/htl/Versions
@@ -50,6 +50,7 @@ libc {
     __pthread_total;
     ___pthread_self;
     __pthread_init_thread;
+    __pthread_default_attr;
   }
 }
 
diff --git a/htl/pt-internal.h b/htl/pt-internal.h
index 85a7d905e2..bdc8b83dc9 100644
--- a/htl/pt-internal.h
+++ b/htl/pt-internal.h
@@ -319,6 +319,7 @@ extern int __pthread_mutex_checklocked (pthread_mutex_t 
*mtx);
 
 /* Default thread attributes.  */
 extern struct __pthread_attr __pthread_default_attr;
+libc_hidden_proto (__pthread_default_attr)
 
 /* Default barrier attributes.  */
 extern const struct __pthread_barrierattr __pthread_default_barrierattr;
diff --git a/sysdeps/htl/pt-attr.c b/sysdeps/htl/pt-attr.c
index ddc2c80882..4f0ba83898 100644
--- a/sysdeps/htl/pt-attr.c
+++ b/sysdeps/htl/pt-attr.c
@@ -37,3 +37,4 @@ struct __pthread_attr __pthread_default_attr = {
   __contentionscope: PTHREAD_SCOPE_SYSTEM,
   __schedpolicy: SCHED_OTHER
 };
+libc_hidden_data_def (__pthread_default_attr)
-- 
2.45.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]