about summary refs log tree commit diff
path: root/nptl/pthread_rwlockattr_getkind_np.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:31 +0200
commit9f13a95b6fa848599b40b8f038f33084c5089bc1 (patch)
tree4ebe0772092a5137a11fd9f6d4931a26f223a1b8 /nptl/pthread_rwlockattr_getkind_np.c
parenta8841e00d605bf437dd53223e798744bd831126f (diff)
downloadglibc-9f13a95b6fa848599b40b8f038f33084c5089bc1.tar.gz
glibc-9f13a95b6fa848599b40b8f038f33084c5089bc1.tar.xz
glibc-9f13a95b6fa848599b40b8f038f33084c5089bc1.zip
nptl: Move pthread_rwlockattr_getkind_np 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_getkind_np.c')
-rw-r--r--nptl/pthread_rwlockattr_getkind_np.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/nptl/pthread_rwlockattr_getkind_np.c b/nptl/pthread_rwlockattr_getkind_np.c
index 840b3874c2..53cecf5b99 100644
--- a/nptl/pthread_rwlockattr_getkind_np.c
+++ b/nptl/pthread_rwlockattr_getkind_np.c
@@ -17,12 +17,19 @@
    <https://www.gnu.org/licenses/>.  */
 
 #include "pthreadP.h"
-
+#include <shlib-compat.h>
 
 int
-pthread_rwlockattr_getkind_np (const pthread_rwlockattr_t *attr, int *pref)
+__pthread_rwlockattr_getkind_np (const pthread_rwlockattr_t *attr, int *pref)
 {
   *pref = ((const struct pthread_rwlockattr *) attr)->lockkind;
 
   return 0;
 }
+versioned_symbol (libc, __pthread_rwlockattr_getkind_np,
+                  pthread_rwlockattr_getkind_np, GLIBC_2_34);
+
+#if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_1, GLIBC_2_34)
+compat_symbol (libpthread, __pthread_rwlockattr_getkind_np,
+               pthread_rwlockattr_getkind_np, GLIBC_2_1);
+#endif