diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-06-03 21:01:27 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-06-03 22:07:54 +0200 |
commit | b5346868eee22836bce235cf995db1305567ded6 (patch) | |
tree | 73d7f506608a5b8e9a18477eb5b18f9fceccb5ee /sysdeps/unix/sysv/linux/timer_create.c | |
parent | e6c1385ce84c9896e0ad51cd9db326a0191bf160 (diff) | |
download | glibc-fw/librt.tar.gz |
Linux: Cleanups after librt movefw/librt
librt.so is no longer installed for PTHREAD_IN_LIBC, and tests
are not linked against it.
GLIBC_PRIVATE symbols that were needed during the transition are
removed again.
Diffstat (limited to 'sysdeps/unix/sysv/linux/timer_create.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/timer_create.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/timer_create.c b/sysdeps/unix/sysv/linux/timer_create.c index 1adb8633ea..79362f31aa 100644 --- a/sysdeps/unix/sysv/linux/timer_create.c +++ b/sysdeps/unix/sysv/linux/timer_create.c @@ -144,8 +144,7 @@ libc_hidden_ver (___timer_create, __timer_create) #if __WORDSIZE == 64 && OTHER_SHLIB_COMPAT (librt, GLIBC_2_2, GLIBC_2_3_3) compat_symbol (librt, ___timer_create, timer_create, GLIBC_2_3_3); -timer_t __timer_compat_list[OLD_TIMER_MAX] __attribute__ ((nocommon)); -libc_hidden_data_def (__timer_compat_list) +timer_t __timer_compat_list[OLD_TIMER_MAX]; int __timer_create_old (clockid_t clock_id, struct sigevent *evp, int *timerid) |