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

htl/Makefile
htl/Versions
htl/pt-internal.h
sysdeps/mach/hurd/htl/pt-sigstate.c

index 4c996a9eb3fd6f44a90d6f6ef93de0c23dc4d1fe..2e14f129a64d7593e8d5eec93b6ba706a5e7fc45 100644 (file)
@@ -118,7 +118,6 @@ libpthread-routines := \
   pt-machdep \
   pt-spin \
   pt-sigstate-init \
-  pt-sigstate \
   pt-kill \
   pt-getcpuclockid \
   pt-setschedprio \
@@ -210,6 +209,7 @@ routines := \
   pt-pthread_self \
   pt-self pt-equal \
   pt-setschedparam \
+  pt-sigstate \
   pt-sigstate-destroy \
   # routines
 shared-only-routines = forward
index 388e61693041d1a125c8def914a1051baaba0f4d..5ea9887b688b06545b224bbb3da7a9bd9d7feea4 100644 (file)
@@ -94,6 +94,7 @@ libc {
     __pthread_attr_setstack;
     __pthread_condattr_init;
     __pthread_default_condattr;
+    __pthread_sigstate;
     __pthread_sigstate_destroy;
   }
 }
index 6bf189501df06ffb5dc6a588ae2fa6aa9e82b15a..2b4331a6c04b23e10385a833871d1db6c01cb74f 100644 (file)
@@ -313,6 +313,7 @@ extern error_t __pthread_sigstate (struct __pthread *__restrict thread, int how,
                                   const sigset_t *__restrict set,
                                   sigset_t *__restrict oset,
                                   int clear_pending);
+libc_hidden_proto (__pthread_sigstate)
 
 /* If supported, check that MUTEX is locked by the caller.  */
 extern int __pthread_mutex_checklocked (pthread_mutex_t *mtx);
index 2b0c493d9c7cf9ac6b29b15e3eb1a67df80f3c9d..fb7dcf85c72461fdfe93943293ef893d3171149e 100644 (file)
@@ -82,3 +82,4 @@ __pthread_sigstate (struct __pthread *thread, int how,
 
   return err;
 }
+libc_hidden_def (__pthread_sigstate)