aboutsummaryrefslogtreecommitdiff
path: root/htl/forward.c
diff options
context:
space:
mode:
authorGuy-Fleury Iteriteka <gfleury@disroot.org>2023-07-16 10:44:06 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-08-24 01:57:04 +0200
commita1a942fb5f786ebcc71631de020e05d6b6343985 (patch)
treef03c3e9484bee9f08b288c584f3634a4fe7b3e2e /htl/forward.c
parent9dfa2562162bf5f7ad1d85d34d827c388631fd86 (diff)
downloadglibc-a1a942fb5f786ebcc71631de020e05d6b6343985.zip
glibc-a1a942fb5f786ebcc71631de020e05d6b6343985.tar.gz
glibc-a1a942fb5f786ebcc71631de020e05d6b6343985.tar.bz2
htl: move pthread_getschedparam into libc
Signed-off-by: Guy-Fleury Iteriteka <gfleury@disroot.org> Message-Id: <20230716084414.107245-3-gfleury@disroot.org>
Diffstat (limited to 'htl/forward.c')
-rw-r--r--htl/forward.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/htl/forward.c b/htl/forward.c
index a8147d3..df0d4ec 100644
--- a/htl/forward.c
+++ b/htl/forward.c
@@ -107,10 +107,6 @@ FORWARD_NORETURN (__pthread_exit, void, (void *retval), (retval),
exit (EXIT_SUCCESS))
strong_alias (__pthread_exit, pthread_exit);
-
-FORWARD (pthread_getschedparam,
- (pthread_t target_thread, int *policy, struct sched_param *param),
- (target_thread, policy, param), 0)
FORWARD (pthread_setschedparam,
(pthread_t target_thread, int policy,
const struct sched_param *param), (target_thread, policy, param), 0)