diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-01-13 01:33:21 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-01-13 01:38:33 +0100 |
commit | ae793cc20d80eec6ccffc31612b635b8c1b82e89 (patch) | |
tree | 76a9748f3fca3e40c3551fd74b204199821ae0db /sysdeps/mach/htl | |
parent | 196e62cbe4acdab22a95740b618c699863ed460c (diff) | |
download | glibc-ae793cc20d80eec6ccffc31612b635b8c1b82e89.tar.gz glibc-ae793cc20d80eec6ccffc31612b635b8c1b82e89.tar.xz glibc-ae793cc20d80eec6ccffc31612b635b8c1b82e89.zip |
htl: Avoid exposing unixoid functions
C11 threads should not expose them.
Diffstat (limited to 'sysdeps/mach/htl')
-rw-r--r-- | sysdeps/mach/htl/pt-timedblock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/mach/htl/pt-timedblock.c b/sysdeps/mach/htl/pt-timedblock.c index 3b8779367d..63af869c90 100644 --- a/sysdeps/mach/htl/pt-timedblock.c +++ b/sysdeps/mach/htl/pt-timedblock.c @@ -39,7 +39,7 @@ __pthread_timedblock (struct __pthread *thread, /* We have an absolute time and now we have to convert it to a relative time. Arg. */ - err = clock_gettime (clock_id, &now); + err = __clock_gettime (clock_id, &now); assert (!err); if (now.tv_sec > abstime->tv_sec |