diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-05-03 09:10:57 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-05-03 09:18:38 +0200 |
commit | dbfa12e201529d7006477d192a6f340e696744a1 (patch) | |
tree | c2396e15b5e963ba2f4dc9dbc59b80dc7d3c74ab /nptl/Versions | |
parent | 0af0ccc2d58f8b220fda10f8d1147d84ed8b88a0 (diff) | |
download | glibc-dbfa12e201529d7006477d192a6f340e696744a1.zip glibc-dbfa12e201529d7006477d192a6f340e696744a1.tar.gz glibc-dbfa12e201529d7006477d192a6f340e696744a1.tar.bz2 |
nptl: Move pthread_rwlockattr_init into libc
The symbol was moved using scripts/move-symbol-to-libc.py.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'nptl/Versions')
-rw-r--r-- | nptl/Versions | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nptl/Versions b/nptl/Versions index 1ca7c77..bc0a9c8 100644 --- a/nptl/Versions +++ b/nptl/Versions @@ -76,6 +76,7 @@ libc { pthread_rwlockattr_destroy; pthread_rwlockattr_getkind_np; pthread_rwlockattr_getpshared; + pthread_rwlockattr_init; } GLIBC_2.2 { __pthread_rwlock_destroy; @@ -232,6 +233,7 @@ libc { pthread_rwlockattr_destroy; pthread_rwlockattr_getkind_np; pthread_rwlockattr_getpshared; + pthread_rwlockattr_init; pthread_setspecific; pthread_spin_destroy; pthread_spin_init; @@ -318,7 +320,6 @@ libpthread { pthread_attr_setstacksize; pthread_create; pthread_getconcurrency; - pthread_rwlockattr_init; pthread_rwlockattr_setkind_np; pthread_rwlockattr_setpshared; pthread_setconcurrency; |