diff options
author | Florian Weimer <fweimer@redhat.com> | 2020-02-10 11:51:05 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2020-02-20 08:57:01 +0100 |
commit | f2323817dde1e87d44e058af5954c25d72fbdb11 (patch) | |
tree | 915969b9a6b9755c49537692129b40cd34fadd16 /nptl/forward.c | |
parent | d5074b30fe54f4e05313672d76698065690eed77 (diff) | |
download | glibc-f2323817dde1e87d44e058af5954c25d72fbdb11.tar glibc-f2323817dde1e87d44e058af5954c25d72fbdb11.tar.gz glibc-f2323817dde1e87d44e058af5954c25d72fbdb11.tar.bz2 glibc-f2323817dde1e87d44e058af5954c25d72fbdb11.zip |
nptl: Move pthread_setschedparam implementation into libc
This is part of the libpthread removal project:
<https://sourceware.org/ml/libc-alpha/2019-10/msg00080.html>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'nptl/forward.c')
-rw-r--r-- | nptl/forward.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/nptl/forward.c b/nptl/forward.c index f84f7795a2..d486c9fec9 100644 --- a/nptl/forward.c +++ b/nptl/forward.c @@ -108,11 +108,6 @@ FORWARD_NORETURN (__pthread_exit, void, (void *retval), (retval), strong_alias (__pthread_exit, pthread_exit); -FORWARD (pthread_setschedparam, - (pthread_t target_thread, int policy, - const struct sched_param *param), (target_thread, policy, param), 0) - - FORWARD (pthread_mutex_destroy, (pthread_mutex_t *mutex), (mutex), 0) FORWARD (pthread_mutex_init, |