about summary refs log tree commit diff
path: root/nptl/pthread_rwlockattr_destroy.c
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2021-05-03 09:10:57 +0200
committerFlorian Weimer <fweimer@redhat.com>2021-05-03 09:18:25 +0200
commita8841e00d605bf437dd53223e798744bd831126f (patch)
tree176ba8ece9b9587d16dc88eaf6b6811fc58097f0 /nptl/pthread_rwlockattr_destroy.c
parente8a9597159168db43289da50433af0ba3d8a7f92 (diff)
downloadglibc-a8841e00d605bf437dd53223e798744bd831126f.tar.gz
glibc-a8841e00d605bf437dd53223e798744bd831126f.tar.xz
glibc-a8841e00d605bf437dd53223e798744bd831126f.zip
nptl: Move pthread_rwlockattr_destroy 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/pthread_rwlockattr_destroy.c')
-rw-r--r--nptl/pthread_rwlockattr_destroy.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/nptl/pthread_rwlockattr_destroy.c b/nptl/pthread_rwlockattr_destroy.c
index fefe022760..3ed19f8ac7 100644
--- a/nptl/pthread_rwlockattr_destroy.c
+++ b/nptl/pthread_rwlockattr_destroy.c
@@ -17,12 +17,19 @@
    <https://www.gnu.org/licenses/>.  */
 
 #include "pthreadP.h"
-
+#include <shlib-compat.h>
 
 int
-pthread_rwlockattr_destroy (pthread_rwlockattr_t *attr)
+__pthread_rwlockattr_destroy (pthread_rwlockattr_t *attr)
 {
   /* Nothing to do.  For now.  */
 
   return 0;
 }
+versioned_symbol (libc, __pthread_rwlockattr_destroy,
+                  pthread_rwlockattr_destroy, GLIBC_2_34);
+
+#if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_1, GLIBC_2_34)
+compat_symbol (libpthread, __pthread_rwlockattr_destroy,
+               pthread_rwlockattr_destroy, GLIBC_2_1);
+#endif