aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/htl/timer_routines.c
diff options
context:
space:
mode:
authorgfleury <gfleury@disroot.org>2024-12-19 22:37:27 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2024-12-22 23:37:30 +0100
commitf646be6ff6e4f21e68e579904362d0d110fb3f84 (patch)
treec3d9ae38d5d54dc35aeeb5da82fc4f0669a1f9ee /sysdeps/htl/timer_routines.c
parentba8522542fc2f1fa0a928432be91b9456ad745da (diff)
downloadglibc-f646be6ff6e4f21e68e579904362d0d110fb3f84.zip
glibc-f646be6ff6e4f21e68e579904362d0d110fb3f84.tar.gz
glibc-f646be6ff6e4f21e68e579904362d0d110fb3f84.tar.bz2
htl: move pthread_cond_timedwait, pthread_cond_clockwait, pthread_cond_wait into libc.
Message-ID: <20241219203727.669825-9-gfleury@disroot.org>
Diffstat (limited to 'sysdeps/htl/timer_routines.c')
-rw-r--r--sysdeps/htl/timer_routines.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/htl/timer_routines.c b/sysdeps/htl/timer_routines.c
index 1244ce8..4117545 100644
--- a/sysdeps/htl/timer_routines.c
+++ b/sysdeps/htl/timer_routines.c
@@ -418,10 +418,10 @@ thread_func (void *arg)
head of the queue must wake up the thread by broadcasting
this condition variable. */
if (timer != NULL)
- pthread_cond_timedwait (&self->cond, &__timer_mutex,
+ __pthread_cond_timedwait (&self->cond, &__timer_mutex,
&timer->expirytime);
else
- pthread_cond_wait (&self->cond, &__timer_mutex);
+ __pthread_cond_wait (&self->cond, &__timer_mutex);
}
/* This macro will never be executed since the while loop loops
forever - but we have to add it for proper nesting. */