mirror of git://sourceware.org/git/glibc.git
htl: move pthread_rwlock_destroy into libc.
Signed-off-by: gfleury <gfleury@disroot.org> Message-ID: <20250216145434.7089-9-gfleury@disroot.org>
This commit is contained in:
parent
25650ef6b9
commit
d3ef1b56aa
|
@ -46,7 +46,6 @@ libpthread-routines := \
|
|||
pt-cancel \
|
||||
pt-mutex-transfer-np \
|
||||
pt-rwlock-init \
|
||||
pt-rwlock-destroy \
|
||||
pt-hurd-cond-wait \
|
||||
pt-hurd-cond-timedwait \
|
||||
pt-stack-alloc \
|
||||
|
@ -190,6 +189,7 @@ routines := \
|
|||
pt-nthreads \
|
||||
pt-pthread_self \
|
||||
pt-rwlock-attr \
|
||||
pt-rwlock-destroy \
|
||||
pt-rwlock-rdlock \
|
||||
pt-rwlock-timedrdlock \
|
||||
pt-rwlock-timedwrlock \
|
||||
|
|
|
@ -63,6 +63,7 @@ libc {
|
|||
pthread_mutexattr_setprotocol;
|
||||
pthread_mutexattr_setpshared;
|
||||
pthread_mutexattr_settype;
|
||||
pthread_rwlock_destroy;
|
||||
pthread_rwlock_rdlock;
|
||||
pthread_rwlock_timedrdlock;
|
||||
pthread_rwlock_timedwrlock;
|
||||
|
@ -154,6 +155,7 @@ libc {
|
|||
pthread_mutex_consistent; pthread_mutex_consistent_np;
|
||||
pthread_mutex_getprioceiling;
|
||||
pthread_mutex_setprioceiling;
|
||||
pthread_rwlock_destroy;
|
||||
pthread_mutex_trylock;
|
||||
pthread_rwlock_clockrdlock;
|
||||
pthread_rwlock_clockwrlock;
|
||||
|
@ -263,7 +265,7 @@ libpthread {
|
|||
|
||||
pthread_once;
|
||||
|
||||
pthread_rwlock_destroy; pthread_rwlock_init;
|
||||
pthread_rwlock_init;
|
||||
|
||||
pthread_setconcurrency;
|
||||
pthread_setschedprio; pthread_setspecific;
|
||||
|
@ -318,6 +320,6 @@ libpthread {
|
|||
__pthread_getattr_np;
|
||||
__pthread_enable_asynccancel;
|
||||
__pthread_disable_asynccancel;
|
||||
_pthread_rwlock_destroy; _pthread_rwlock_init;
|
||||
_pthread_rwlock_init;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -94,6 +94,7 @@ extern int __pthread_rwlock_init (pthread_rwlock_t *__rwlock,
|
|||
const pthread_rwlockattr_t *__attr);
|
||||
|
||||
extern int __pthread_rwlock_destroy (pthread_rwlock_t *__rwlock);
|
||||
libc_hidden_proto (__pthread_rwlock_destroy)
|
||||
|
||||
extern int __pthread_rwlock_rdlock (pthread_rwlock_t *__rwlock);
|
||||
libc_hidden_proto (__pthread_rwlock_rdlock)
|
||||
|
@ -124,7 +125,6 @@ libc_hidden_proto (__pthread_setcancelstate)
|
|||
#if !defined(__NO_WEAK_PTHREAD_ALIASES) && !IS_IN (libpthread)
|
||||
# ifdef weak_extern
|
||||
weak_extern (__pthread_rwlock_init)
|
||||
weak_extern (__pthread_rwlock_destroy)
|
||||
weak_extern (__pthread_key_create)
|
||||
weak_extern (__pthread_setspecific)
|
||||
weak_extern (__pthread_getspecific)
|
||||
|
@ -132,7 +132,6 @@ weak_extern (__pthread_once)
|
|||
weak_extern (__pthread_initialize)
|
||||
weak_extern (__pthread_atfork)
|
||||
# else
|
||||
# pragma weak __pthread_rwlock_destroy
|
||||
# pragma weak __pthread_key_create
|
||||
# pragma weak __pthread_setspecific
|
||||
# pragma weak __pthread_getspecific
|
||||
|
|
|
@ -18,11 +18,16 @@
|
|||
|
||||
#include <pthread.h>
|
||||
#include <pt-internal.h>
|
||||
#include <shlib-compat.h>
|
||||
|
||||
int
|
||||
_pthread_rwlock_destroy (pthread_rwlock_t *rwlock)
|
||||
__pthread_rwlock_destroy (pthread_rwlock_t *rwlock)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
libc_hidden_def (__pthread_rwlock_destroy)
|
||||
versioned_symbol (libc, __pthread_rwlock_destroy, pthread_rwlock_destroy, GLIBC_2_42);
|
||||
|
||||
strong_alias (_pthread_rwlock_destroy, pthread_rwlock_destroy);
|
||||
#if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_12, GLIBC_2_42)
|
||||
compat_symbol (libpthread, __pthread_rwlock_destroy, pthread_rwlock_destroy, GLIBC_2_12);
|
||||
#endif
|
||||
|
|
|
@ -88,6 +88,7 @@ GLIBC_2.12 pthread_mutexattr_setprioceiling F
|
|||
GLIBC_2.12 pthread_mutexattr_setprotocol F
|
||||
GLIBC_2.12 pthread_mutexattr_setpshared F
|
||||
GLIBC_2.12 pthread_mutexattr_settype F
|
||||
GLIBC_2.12 pthread_rwlock_destroy F
|
||||
GLIBC_2.12 pthread_rwlock_rdlock F
|
||||
GLIBC_2.12 pthread_rwlock_timedrdlock F
|
||||
GLIBC_2.12 pthread_rwlock_timedwrlock F
|
||||
|
@ -2595,6 +2596,7 @@ GLIBC_2.42 pthread_mutex_setprioceiling F
|
|||
GLIBC_2.42 pthread_mutex_trylock F
|
||||
GLIBC_2.42 pthread_rwlock_clockrdlock F
|
||||
GLIBC_2.42 pthread_rwlock_clockwrlock F
|
||||
GLIBC_2.42 pthread_rwlock_destroy F
|
||||
GLIBC_2.42 pthread_rwlock_rdlock F
|
||||
GLIBC_2.42 pthread_rwlock_timedrdlock F
|
||||
GLIBC_2.42 pthread_rwlock_timedwrlock F
|
||||
|
|
|
@ -36,7 +36,6 @@ GLIBC_2.12 pthread_key_delete F
|
|||
GLIBC_2.12 pthread_kill F
|
||||
GLIBC_2.12 pthread_mutex_transfer_np F
|
||||
GLIBC_2.12 pthread_once F
|
||||
GLIBC_2.12 pthread_rwlock_destroy F
|
||||
GLIBC_2.12 pthread_rwlock_init F
|
||||
GLIBC_2.12 pthread_setconcurrency F
|
||||
GLIBC_2.12 pthread_setschedprio F
|
||||
|
|
|
@ -1581,6 +1581,7 @@ GLIBC_2.38 pthread_mutexattr_setrobust_np F
|
|||
GLIBC_2.38 pthread_mutexattr_settype F
|
||||
GLIBC_2.38 pthread_rwlock_clockrdlock F
|
||||
GLIBC_2.38 pthread_rwlock_clockwrlock F
|
||||
GLIBC_2.38 pthread_rwlock_destroy F
|
||||
GLIBC_2.38 pthread_rwlock_rdlock F
|
||||
GLIBC_2.38 pthread_rwlock_timedrdlock F
|
||||
GLIBC_2.38 pthread_rwlock_timedwrlock F
|
||||
|
@ -2278,6 +2279,7 @@ GLIBC_2.42 pthread_mutex_setprioceiling F
|
|||
GLIBC_2.42 pthread_mutex_trylock F
|
||||
GLIBC_2.42 pthread_rwlock_clockrdlock F
|
||||
GLIBC_2.42 pthread_rwlock_clockwrlock F
|
||||
GLIBC_2.42 pthread_rwlock_destroy F
|
||||
GLIBC_2.42 pthread_rwlock_rdlock F
|
||||
GLIBC_2.42 pthread_rwlock_timedrdlock F
|
||||
GLIBC_2.42 pthread_rwlock_timedwrlock F
|
||||
|
|
|
@ -56,7 +56,6 @@ GLIBC_2.38 pthread_key_delete F
|
|||
GLIBC_2.38 pthread_kill F
|
||||
GLIBC_2.38 pthread_mutex_transfer_np F
|
||||
GLIBC_2.38 pthread_once F
|
||||
GLIBC_2.38 pthread_rwlock_destroy F
|
||||
GLIBC_2.38 pthread_rwlock_init F
|
||||
GLIBC_2.38 pthread_setconcurrency F
|
||||
GLIBC_2.38 pthread_setschedprio F
|
||||
|
|
Loading…
Reference in New Issue