diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-02-25 20:43:13 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-03-05 08:35:50 -0300 |
commit | 4b9bedbc9032981f3c4ff9822d8d2015a8c026bc (patch) | |
tree | e140c5b14337d05797e79cc73d2cfe529ccfdfe9 /sysdeps/unix/sysv/linux/thrd_sleep.c | |
parent | 6990a72679515ec2fd87e4ed408667051d81eebb (diff) | |
download | glibc-4b9bedbc9032981f3c4ff9822d8d2015a8c026bc.tar glibc-4b9bedbc9032981f3c4ff9822d8d2015a8c026bc.tar.gz glibc-4b9bedbc9032981f3c4ff9822d8d2015a8c026bc.tar.bz2 glibc-4b9bedbc9032981f3c4ff9822d8d2015a8c026bc.zip |
linux: Fix __thrd_sleep64 hidden definition
The symbol is exported by libc.
Diffstat (limited to 'sysdeps/unix/sysv/linux/thrd_sleep.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/thrd_sleep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/thrd_sleep.c b/sysdeps/unix/sysv/linux/thrd_sleep.c index 73c6c5f1b1..a84a7c5ffa 100644 --- a/sysdeps/unix/sysv/linux/thrd_sleep.c +++ b/sysdeps/unix/sysv/linux/thrd_sleep.c @@ -38,7 +38,7 @@ __thrd_sleep64 (const struct __timespec64 *time_point, } #if __TIMESIZE != 64 -libpthread_hidden_def (__thrd_sleep64) +libc_hidden_def (__thrd_sleep64) int __thrd_sleep (const struct timespec *time_point, struct timespec *remaining) |