diff options
Diffstat (limited to 'nptl/pthread_rwlockattr_getkind_np.c')
-rw-r--r-- | nptl/pthread_rwlockattr_getkind_np.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/nptl/pthread_rwlockattr_getkind_np.c b/nptl/pthread_rwlockattr_getkind_np.c index 840b387..53cecf5 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 |