]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
htl: move pthread_sigmask into libc.
authorgfleury <gfleury@disroot.org>
Thu, 12 Dec 2024 22:06:12 +0000 (00:06 +0200)
committerSamuel Thibault <samuel.thibault@ens-lyon.org>
Sat, 14 Dec 2024 22:13:14 +0000 (23:13 +0100)
Message-ID: <20241212220612.782313-3-gfleury@disroot.org>

htl/Makefile
htl/Versions
htl/pt-sigmask.c
sysdeps/htl/pthreadP.h
sysdeps/htl/timer_routines.c
sysdeps/mach/hurd/gai_misc.h
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 2e14f129a64d7593e8d5eec93b6ba706a5e7fc45..7f40fd91bf77ca49709a3aca09073c1265a3e824 100644 (file)
@@ -48,7 +48,6 @@ libpthread-routines := \
   pt-exit \
   pt-initialize \
   pt-join \
-  pt-sigmask \
   pt-spin-inlines \
   pt-cleanup \
   pt-setcancelstate \
@@ -209,6 +208,7 @@ routines := \
   pt-pthread_self \
   pt-self pt-equal \
   pt-setschedparam \
+  pt-sigmask \
   pt-sigstate \
   pt-sigstate-destroy \
   # routines
index 5ea9887b688b06545b224bbb3da7a9bd9d7feea4..dd786f7947679c6f67774406bebb4525ce231a68 100644 (file)
@@ -32,6 +32,7 @@ libc {
     pthread_condattr_getpshared;
     pthread_condattr_setclock;
     pthread_condattr_setpshared;
+    pthread_sigmask;
   }
 
   GLIBC_2.21 {
@@ -74,6 +75,7 @@ libc {
     pthread_condattr_getpshared;
     pthread_condattr_setclock;
     pthread_condattr_setpshared;
+    pthread_sigmask;
   }
 
 
@@ -96,6 +98,7 @@ libc {
     __pthread_default_condattr;
     __pthread_sigstate;
     __pthread_sigstate_destroy;
+    __pthread_sigmask;
   }
 }
 
@@ -173,7 +176,6 @@ libpthread {
     pthread_setconcurrency;
     pthread_setschedprio; pthread_setspecific;
 
-    pthread_sigmask;
     pthread_testcancel;
     pthread_yield;
 
index 81ec6b0f819ef88c02bafc5dbdca20a65bd88686..2405cbeddf506aa2bf7e5a64123c9176b352af87 100644 (file)
 
 #include <pthread.h>
 #include <signal.h>
-
+#include <shlib-compat.h>
 #include <pt-internal.h>
 
 int
-pthread_sigmask (int how, const sigset_t *set, sigset_t *oset)
+__pthread_sigmask (int how, const sigset_t *set, sigset_t *oset)
 {
   struct __pthread *self = _pthread_self ();
 
   /* Do not clear SELF's pending signals.  */
   return __pthread_sigstate (self, how, set, oset, 0);
 }
+libc_hidden_def (__pthread_sigmask)
+versioned_symbol (libc, __pthread_sigmask, pthread_sigmask, GLIBC_2_41);
+
+#if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_12, GLIBC_2_41)
+compat_symbol (libpthread, __pthread_sigmask, pthread_sigmask, GLIBC_2_12);
+#endif
index afdf2cbd9f4c2aeb256f2ba429872d576210938f..adb81bc241f9a8f3ef502500a60b882b57dcf263 100644 (file)
@@ -55,6 +55,8 @@ extern int __pthread_cond_clockwait (pthread_cond_t *cond,
                                     const struct timespec *abstime)
   __nonnull ((1, 2, 4));
 extern int __pthread_cond_destroy (pthread_cond_t *cond);
+extern int __pthread_sigmask (int, const sigset_t *, sigset_t *);
+libc_hidden_proto (__pthread_sigmask);
 
 typedef struct __cthread *__cthread_t;
 typedef int __cthread_key_t;
index 857b1cbb01e81428dda81080061fa6fbd793cdbf..3a63de6bbb907bcb242dc9982a0cd38ea5dde930 100644 (file)
@@ -18,7 +18,7 @@
 
 #include <assert.h>
 #include <errno.h>
-#include <pthread.h>
+#include <pthreadP.h>
 #include <stddef.h>
 #include <stdlib.h>
 #include <string.h>
@@ -468,7 +468,7 @@ __timer_thread_start (struct thread_node *thread)
   thread->exists = 1;
 
   sigfillset (&set);
-  pthread_sigmask (SIG_SETMASK, &set, &oset);
+  __pthread_sigmask (SIG_SETMASK, &set, &oset);
 
   if (pthread_create (&thread->id, &thread->attr,
                      (void *(*) (void *)) thread_func, thread) != 0)
@@ -477,7 +477,7 @@ __timer_thread_start (struct thread_node *thread)
       retval = -1;
     }
 
-  pthread_sigmask (SIG_SETMASK, &oset, NULL);
+  __pthread_sigmask (SIG_SETMASK, &oset, NULL);
 
   return retval;
 }
index bd26ec319562f8c070880f287539d132cd9744f0..d822509fd490773c33ee94d83a845745a2d855d1 100644 (file)
@@ -17,7 +17,7 @@
 
 #include <assert.h>
 #include <signal.h>
-#include <pthread.h>
+#include <pthreadP.h>
 
 #define gai_start_notify_thread __gai_start_notify_thread
 #define gai_create_helper_thread __gai_create_helper_thread
@@ -28,7 +28,7 @@ __gai_start_notify_thread (void)
   sigset_t ss;
   sigemptyset (&ss);
   int sigerr __attribute__ ((unused));
-  sigerr = pthread_sigmask (SIG_SETMASK, &ss, NULL);
+  sigerr = __pthread_sigmask (SIG_SETMASK, &ss, NULL);
   assert_perror (sigerr);
 }
 
@@ -51,13 +51,13 @@ __gai_create_helper_thread (pthread_t *threadp, void *(*tf) (void *),
   sigset_t oss;
   sigfillset (&ss);
   int sigerr __attribute__ ((unused));
-  sigerr = pthread_sigmask (SIG_SETMASK, &ss, &oss);
+  sigerr = __pthread_sigmask (SIG_SETMASK, &ss, &oss);
   assert_perror (sigerr);
 
   int ret = pthread_create (threadp, &attr, tf, arg);
 
   /* Restore the signal mask.  */
-  sigerr = pthread_sigmask (SIG_SETMASK, &oss, NULL);
+  sigerr = __pthread_sigmask (SIG_SETMASK, &oss, NULL);
   assert_perror (sigerr);
 
   (void) pthread_attr_destroy (&attr);
index 76ded62c80cede36440b06f9b9b2e7065d751f87..f4613aadac2bb46157dba010e3225bc85b1da493 100644 (file)
@@ -59,6 +59,7 @@ GLIBC_2.12 pthread_equal F
 GLIBC_2.12 pthread_getschedparam F
 GLIBC_2.12 pthread_self F
 GLIBC_2.12 pthread_setschedparam F
+GLIBC_2.12 pthread_sigmask F
 GLIBC_2.13 __fentry__ F
 GLIBC_2.14 syncfs F
 GLIBC_2.15 __fdelt_chk F
@@ -2513,6 +2514,7 @@ GLIBC_2.41 pthread_condattr_getclock F
 GLIBC_2.41 pthread_condattr_getpshared F
 GLIBC_2.41 pthread_condattr_setclock F
 GLIBC_2.41 pthread_condattr_setpshared F
+GLIBC_2.41 pthread_sigmask F
 GLIBC_2.5 __readlinkat_chk F
 GLIBC_2.5 inet6_opt_append F
 GLIBC_2.5 inet6_opt_find F
index 72cb549b2411df27d3ffd5d2a7f56562071283c0..e5b3edbed7673c0e23cd66d746f73deec4c34a28 100644 (file)
@@ -85,7 +85,6 @@ GLIBC_2.12 pthread_setcanceltype F
 GLIBC_2.12 pthread_setconcurrency F
 GLIBC_2.12 pthread_setschedprio F
 GLIBC_2.12 pthread_setspecific F
-GLIBC_2.12 pthread_sigmask F
 GLIBC_2.12 pthread_spin_destroy F
 GLIBC_2.12 pthread_spin_init F
 GLIBC_2.12 pthread_spin_lock F
index c2ee0b1c1a9e3af5959f6de657c0ed9ef0847776..b331c26effb84d21d10fa95796207f90897324e6 100644 (file)
@@ -1554,6 +1554,7 @@ GLIBC_2.38 pthread_self F
 GLIBC_2.38 pthread_setcancelstate F
 GLIBC_2.38 pthread_setcanceltype F
 GLIBC_2.38 pthread_setschedparam F
+GLIBC_2.38 pthread_sigmask F
 GLIBC_2.38 ptrace F
 GLIBC_2.38 ptsname F
 GLIBC_2.38 ptsname_r F
@@ -2208,6 +2209,7 @@ GLIBC_2.41 pthread_condattr_getclock F
 GLIBC_2.41 pthread_condattr_getpshared F
 GLIBC_2.41 pthread_condattr_setclock F
 GLIBC_2.41 pthread_condattr_setpshared F
+GLIBC_2.41 pthread_sigmask F
 HURD_CTHREADS_0.3 __cthread_getspecific F
 HURD_CTHREADS_0.3 __cthread_keycreate F
 HURD_CTHREADS_0.3 __cthread_setspecific F
index bdadfd764a004ad11a2e23175443c0fb33450378..89a63043545d630f768470eec8ddf78116f518ae 100644 (file)
@@ -115,7 +115,6 @@ GLIBC_2.38 pthread_setcanceltype F
 GLIBC_2.38 pthread_setconcurrency F
 GLIBC_2.38 pthread_setschedprio F
 GLIBC_2.38 pthread_setspecific F
-GLIBC_2.38 pthread_sigmask F
 GLIBC_2.38 pthread_spin_destroy F
 GLIBC_2.38 pthread_spin_init F
 GLIBC_2.38 pthread_spin_lock F