about summary refs log tree commit diff
path: root/htl/pt-yield.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2020-01-13 01:33:21 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2020-01-13 01:38:33 +0100
commitae793cc20d80eec6ccffc31612b635b8c1b82e89 (patch)
tree76a9748f3fca3e40c3551fd74b204199821ae0db /htl/pt-yield.c
parent196e62cbe4acdab22a95740b618c699863ed460c (diff)
downloadglibc-ae793cc20d80eec6ccffc31612b635b8c1b82e89.tar.gz
glibc-ae793cc20d80eec6ccffc31612b635b8c1b82e89.tar.xz
glibc-ae793cc20d80eec6ccffc31612b635b8c1b82e89.zip
htl: Avoid exposing unixoid functions
C11 threads should not expose them.
Diffstat (limited to 'htl/pt-yield.c')
-rw-r--r--htl/pt-yield.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/htl/pt-yield.c b/htl/pt-yield.c
index 29fda256cc..11aa852ed3 100644
--- a/htl/pt-yield.c
+++ b/htl/pt-yield.c
@@ -22,5 +22,5 @@
 int
 pthread_yield (void)
 {
-  return sched_yield ();
+  return __sched_yield ();
 }