]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
htl: move pthread_getname_np/setname_np into libc.
authorgfleury <gfleury@disroot.org>
Tue, 18 Nov 2025 12:50:43 +0000 (14:50 +0200)
committerSamuel Thibault <samuel.thibault@ens-lyon.org>
Tue, 18 Nov 2025 14:01:35 +0000 (15:01 +0100)
Message-ID: <20251118125044.1160780-2-gfleury@disroot.org>

htl/Makefile
htl/Versions
sysdeps/htl/pthreadP.h
sysdeps/mach/htl/pt-getname-np.c
sysdeps/mach/htl/pt-setname-np.c
sysdeps/mach/hurd/i386/libc.abilist
sysdeps/mach/hurd/i386/libpthread.abilist
sysdeps/mach/hurd/x86_64/libc.abilist
sysdeps/mach/hurd/x86_64/libpthread.abilist

index e59a7fff6883cdec48628e7b8e8b78d4267541a4..ee377463a14a11eb738615652fa929a01b393192 100644 (file)
@@ -29,8 +29,6 @@ libpthread-routines := \
   pt-hurd-cond-wait \
   pt-hurd-cond-timedwait \
   pt-spin \
-  pt-getname-np \
-  pt-setname-np \
   # libpthread-routine
 
 headers := \
@@ -122,6 +120,7 @@ routines := \
   pt-getattr \
   pt-getconcurrency \
   pt-getcpuclockid \
+  pt-getname-np \
   pt-getschedparam \
   pt-getspecific \
   pt-init-specific \
@@ -174,6 +173,7 @@ routines := \
   pt-setcancelstate \
   pt-setcanceltype \
   pt-setconcurrency \
+  pt-setname-np \
   pt-setschedparam \
   pt-setschedprio \
   pt-setspecific \
index 343de800b0a52c02549d9ac860381dfb61bb0dab..ed29636917c40f417bb561e8370b4aa37a6d29ab 100644 (file)
@@ -157,6 +157,11 @@ libc {
     sem_clockwait;
   }
 
+  GLIBC_2.40 {
+    pthread_getname_np;
+    pthread_setname_np;
+  }
+
   GLIBC_2.41 {
     pthread_attr_getguardsize;
     pthread_attr_getstacksize;
@@ -225,10 +230,12 @@ libc {
     pthread_getattr_np;
     pthread_getconcurrency;
     pthread_getcpuclockid;
+    pthread_getname_np;
     pthread_join;
     pthread_kill;
     pthread_mutex_transfer_np;
     pthread_setconcurrency;
+    pthread_setname_np;
     pthread_setschedprio;
     pthread_testcancel;
     pthread_timedjoin_np;
@@ -345,7 +352,6 @@ libpthread {
   }
 
   GLIBC_2.40 {
-    pthread_getname_np;
-    pthread_setname_np;
+    __libpthread_version_placeholder;
   }
 }
index 5fb646971456dc488d02fd25e242127a37e25a34..6ea1e79a92f3fd7e4322cca4ab9221413798f9a8 100644 (file)
@@ -225,6 +225,11 @@ int __pthread_setconcurrency (int __new_level);
 libc_hidden_proto (__pthread_setconcurrency)
 int __pthread_getconcurrency (void);
 libc_hidden_proto (__pthread_getconcurrency)
+int __pthread_getname_np (pthread_t __target_thread, char *__buf,
+                              size_t __buflen);
+libc_hidden_proto (__pthread_getname_np)
+int __pthread_setname_np (pthread_t __target_thread, const char *__name);
+libc_hidden_proto (__pthread_setname_np)
 
 #define __pthread_raise_internal(__sig) raise (__sig)
 
index 7b836b667a9fb32bf9b2858829d793873e4b1abd..8db4d40693997fd96c4bdf366db605b27052831e 100644 (file)
@@ -23,6 +23,9 @@
 #include <string.h>
 
 #include <pt-internal.h>
+#include <string.h>
+#include <shlib-compat.h>
+#include <ldsodefs.h>
 
 int
 __pthread_getname_np (pthread_t thread, char *buf, size_t len)
@@ -64,4 +67,9 @@ __pthread_getname_np (pthread_t thread, char *buf, size_t len)
 #endif
 }
 
-weak_alias (__pthread_getname_np, pthread_getname_np)
+libc_hidden_def (__pthread_getname_np)
+versioned_symbol (libc, __pthread_getname_np, pthread_getname_np, GLIBC_2_43);
+
+#if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_40, GLIBC_2_43)
+compat_symbol (libc, __pthread_getname_np, pthread_getname_np, GLIBC_2_40);
+#endif
index 58400c1edf983440a0e2b0d50a9ace7927eed239..0a2a8df5cf9490d1311d6d90b51a0de43ea5ea57 100644 (file)
@@ -22,6 +22,8 @@
 #include <string.h>
 
 #include <pt-internal.h>
+#include <shlib-compat.h>
+#include <ldsodefs.h>
 
 int
 __pthread_setname_np (pthread_t thread, const char *name)
@@ -49,4 +51,9 @@ __pthread_setname_np (pthread_t thread, const char *name)
 #endif
 }
 
-weak_alias (__pthread_setname_np, pthread_setname_np)
+libc_hidden_def (__pthread_setname_np)
+versioned_symbol (libc, __pthread_setname_np, pthread_setname_np, GLIBC_2_43);
+
+#if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_40, GLIBC_2_43)
+compat_symbol (libpthread, __pthread_setname_np, pthread_setname_np, GLIBC_2_40);
+#endif
index f7c323c83492b0bcbc17fa66e8c11d84090cdfaa..a01535746f70e343ad2abb1d37d9c4ca8bb14d82 100644 (file)
@@ -2598,6 +2598,8 @@ GLIBC_2.4 readlinkat F
 GLIBC_2.4 renameat F
 GLIBC_2.4 symlinkat F
 GLIBC_2.4 unlinkat F
+GLIBC_2.40 pthread_getname_np F
+GLIBC_2.40 pthread_setname_np F
 GLIBC_2.41 pthread_attr_getguardsize F
 GLIBC_2.41 pthread_attr_getstack F
 GLIBC_2.41 pthread_attr_getstackaddr F
@@ -2676,10 +2678,12 @@ GLIBC_2.43 pthread_detach F
 GLIBC_2.43 pthread_getattr_np F
 GLIBC_2.43 pthread_getconcurrency F
 GLIBC_2.43 pthread_getcpuclockid F
+GLIBC_2.43 pthread_getname_np F
 GLIBC_2.43 pthread_join F
 GLIBC_2.43 pthread_kill F
 GLIBC_2.43 pthread_mutex_transfer_np F
 GLIBC_2.43 pthread_setconcurrency F
+GLIBC_2.43 pthread_setname_np F
 GLIBC_2.43 pthread_setschedprio F
 GLIBC_2.43 pthread_testcancel F
 GLIBC_2.43 pthread_timedjoin_np F
index e1844a8f5e03210f4d7ecb8190b35b0bd6cb2f29..318aa1a6902269a56d2c7a7184fcef10ebca23b1 100644 (file)
@@ -33,5 +33,3 @@ GLIBC_2.32 tss_create F
 GLIBC_2.32 tss_delete F
 GLIBC_2.32 tss_get F
 GLIBC_2.32 tss_set F
-GLIBC_2.40 pthread_getname_np F
-GLIBC_2.40 pthread_setname_np F
index b482d2d040fc0b50f6ab4142b5133bcd49527409..38261ba3395989d3295a97c35ee0b1fdcca2f639 100644 (file)
@@ -2276,6 +2276,8 @@ GLIBC_2.39 stdc_trailing_zeros_ui F
 GLIBC_2.39 stdc_trailing_zeros_ul F
 GLIBC_2.39 stdc_trailing_zeros_ull F
 GLIBC_2.39 stdc_trailing_zeros_us F
+GLIBC_2.40 pthread_getname_np F
+GLIBC_2.40 pthread_setname_np F
 GLIBC_2.41 pthread_attr_getguardsize F
 GLIBC_2.41 pthread_attr_getstack F
 GLIBC_2.41 pthread_attr_getstackaddr F
@@ -2354,10 +2356,12 @@ GLIBC_2.43 pthread_detach F
 GLIBC_2.43 pthread_getattr_np F
 GLIBC_2.43 pthread_getconcurrency F
 GLIBC_2.43 pthread_getcpuclockid F
+GLIBC_2.43 pthread_getname_np F
 GLIBC_2.43 pthread_join F
 GLIBC_2.43 pthread_kill F
 GLIBC_2.43 pthread_mutex_transfer_np F
 GLIBC_2.43 pthread_setconcurrency F
+GLIBC_2.43 pthread_setname_np F
 GLIBC_2.43 pthread_setschedprio F
 GLIBC_2.43 pthread_testcancel F
 GLIBC_2.43 pthread_timedjoin_np F
index d4ae93df53d8a91e96a55b353ba8e387935d01cb..c9ad949d65e092aed27707cf817a7c76fa5cd561 100644 (file)
@@ -32,5 +32,3 @@ GLIBC_2.38 tss_create F
 GLIBC_2.38 tss_delete F
 GLIBC_2.38 tss_get F
 GLIBC_2.38 tss_set F
-GLIBC_2.40 pthread_getname_np F
-GLIBC_2.40 pthread_setname_np F