diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-06-02 07:32:19 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-06-02 07:32:19 +0200 |
commit | 186cd80b1eb0c28f42c052bbaa9b37a7f66ee662 (patch) | |
tree | eb73538bb12d59600599ef976637a62db57e620d /nptl | |
parent | 217b6dc298156bdb0d6aea9ea93e7e394a5ff091 (diff) | |
download | glibc-186cd80b1eb0c28f42c052bbaa9b37a7f66ee662.tar glibc-186cd80b1eb0c28f42c052bbaa9b37a7f66ee662.tar.gz glibc-186cd80b1eb0c28f42c052bbaa9b37a7f66ee662.tar.bz2 glibc-186cd80b1eb0c28f42c052bbaa9b37a7f66ee662.zip |
Add missing symbols to Version files
Some symbols have explicit versioned_symbol or compat_symbol markers
in the sources, but no corresponding entry in the Versions files.
This presently works because the local: * directive is only applied
to the base version.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/Versions | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/nptl/Versions b/nptl/Versions index af62a47cca..b8b82991fd 100644 --- a/nptl/Versions +++ b/nptl/Versions @@ -175,6 +175,7 @@ libc { GLIBC_2.3.4 { pthread_attr_getaffinity_np; pthread_attr_setaffinity_np; + pthread_getaffinity_np; pthread_setaffinity_np; pthread_setschedprio; } @@ -258,6 +259,7 @@ libc { __pthread_register_cancel_defer; __pthread_unregister_cancel; __pthread_unregister_cancel_restore; + __pthread_unwind_next; call_once; cnd_broadcast; cnd_destroy; @@ -294,6 +296,7 @@ libc { pthread_condattr_getpshared; pthread_condattr_setclock; pthread_condattr_setpshared; + pthread_create; pthread_detach; pthread_getattr_default_np; pthread_getconcurrency; @@ -308,9 +311,12 @@ libc { pthread_mutex_consistent; pthread_mutex_getprioceiling; pthread_mutex_setprioceiling; + pthread_mutex_timedlock; + pthread_mutex_trylock; pthread_mutexattr_destroy; pthread_mutexattr_getprioceiling; pthread_mutexattr_getprotocol; + pthread_mutexattr_getpshared; pthread_mutexattr_getrobust; pthread_mutexattr_gettype; pthread_mutexattr_init; @@ -323,6 +329,7 @@ libc { pthread_rwlock_clockrdlock; pthread_rwlock_clockwrlock; pthread_rwlock_destroy; + pthread_rwlock_init; pthread_rwlock_rdlock; pthread_rwlock_timedrdlock; pthread_rwlock_timedwrlock; @@ -336,6 +343,7 @@ libc { pthread_rwlockattr_init; pthread_rwlockattr_setkind_np; pthread_rwlockattr_setpshared; + pthread_setaffinity_np; pthread_setattr_default_np; pthread_setconcurrency; pthread_setname_np; |