aboutsummaryrefslogtreecommitdiff
path: root/htl/forward.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 /htl/forward.c
parentba8522542fc2f1fa0a928432be91b9456ad745da (diff)
downloadglibc-f646be6ff6e4f21e68e579904362d0d110fb3f84.tar.xz
glibc-f646be6ff6e4f21e68e579904362d0d110fb3f84.zip
htl: move pthread_cond_timedwait, pthread_cond_clockwait, pthread_cond_wait into libc.
Message-ID: <20241219203727.669825-9-gfleury@disroot.org>
Diffstat (limited to 'htl/forward.c')
-rw-r--r--htl/forward.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/htl/forward.c b/htl/forward.c
index 78758cef62..29f5528099 100644
--- a/htl/forward.c
+++ b/htl/forward.c
@@ -53,12 +53,6 @@ name decl \
#define FORWARD(name, decl, params, defretval) \
FORWARD2 (name, int, decl, params, return defretval)
-FORWARD (pthread_cond_wait, (pthread_cond_t *cond, pthread_mutex_t *mutex),
- (cond, mutex), 0)
-FORWARD (pthread_cond_timedwait,
- (pthread_cond_t *cond, pthread_mutex_t *mutex,
- const struct timespec *abstime), (cond, mutex, abstime), 0)
-
/* Use an alias to avoid warning, as pthread_exit is declared noreturn. */
FORWARD_NORETURN (__pthread_exit, void, (void *retval), (retval),
exit (EXIT_SUCCESS))