aboutsummaryrefslogtreecommitdiff
path: root/nptl
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2019-10-07 15:49:48 +0200
committerFlorian Weimer <fweimer@redhat.com>2019-10-07 15:49:48 +0200
commit0caab6638e22a301e8aa0b35f790b15aaf0791d9 (patch)
treee816389a0615dc2b1ce0710d80d419f5a2472717 /nptl
parent77523d5e43cb5721c23855eb6045b0607a3b30a0 (diff)
downloadglibc-0caab6638e22a301e8aa0b35f790b15aaf0791d9.zip
glibc-0caab6638e22a301e8aa0b35f790b15aaf0791d9.tar.gz
glibc-0caab6638e22a301e8aa0b35f790b15aaf0791d9.tar.bz2
nptl: Move pthread_attr_getschedparam 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')
-rw-r--r--nptl/Makefile4
-rw-r--r--nptl/Versions2
-rw-r--r--nptl/forward.c3
-rw-r--r--nptl/nptl-init.c1
4 files changed, 3 insertions, 7 deletions
diff --git a/nptl/Makefile b/nptl/Makefile
index 53c556e..5ade150 100644
--- a/nptl/Makefile
+++ b/nptl/Makefile
@@ -33,7 +33,7 @@ routines = alloca_cutoff forward libc-lowlevellock libc-cancellation \
thrd_equal thrd_sleep thrd_yield pthread_equal \
pthread_attr_destroy pthread_attr_init pthread_attr_getdetachstate \
pthread_attr_setdetachstate pthread_attr_getinheritsched \
- pthread_attr_setinheritsched
+ pthread_attr_setinheritsched pthread_attr_getschedparam
shared-only-routines = forward
static-only-routines = pthread_atfork
@@ -57,7 +57,7 @@ libpthread-routines = nptl-init nptlfreeres vars events version pt-interp \
pthread_getschedparam pthread_setschedparam \
pthread_setschedprio \
pthread_attr_getguardsize pthread_attr_setguardsize \
- pthread_attr_getschedparam pthread_attr_setschedparam \
+ pthread_attr_setschedparam \
pthread_attr_getschedpolicy pthread_attr_setschedpolicy \
pthread_attr_getscope pthread_attr_setscope \
pthread_attr_getstackaddr pthread_attr_setstackaddr \
diff --git a/nptl/Versions b/nptl/Versions
index 70af273..4fa73bf 100644
--- a/nptl/Versions
+++ b/nptl/Versions
@@ -49,7 +49,7 @@ libpthread {
pthread_getschedparam; pthread_setschedparam;
- pthread_attr_getschedparam; pthread_attr_setschedparam;
+ pthread_attr_setschedparam;
pthread_attr_getschedpolicy; pthread_attr_setschedpolicy;
pthread_attr_getscope; pthread_attr_setscope;
diff --git a/nptl/forward.c b/nptl/forward.c
index 807682c..f5e7730 100644
--- a/nptl/forward.c
+++ b/nptl/forward.c
@@ -56,9 +56,6 @@ name decl \
FORWARD2 (name, int, decl, params, return defretval)
-FORWARD (pthread_attr_getschedparam,
- (const pthread_attr_t *attr, struct sched_param *param),
- (attr, param), 0)
FORWARD (pthread_attr_setschedparam,
(pthread_attr_t *attr, const struct sched_param *param),
(attr, param), 0)
diff --git a/nptl/nptl-init.c b/nptl/nptl-init.c
index 0a317a9..909668c 100644
--- a/nptl/nptl-init.c
+++ b/nptl/nptl-init.c
@@ -72,7 +72,6 @@ void __nptl_set_robust (struct pthread *);
#ifdef SHARED
static const struct pthread_functions pthread_functions =
{
- .ptr_pthread_attr_getschedparam = __pthread_attr_getschedparam,
.ptr_pthread_attr_setschedparam = __pthread_attr_setschedparam,
.ptr_pthread_attr_getschedpolicy = __pthread_attr_getschedpolicy,
.ptr_pthread_attr_setschedpolicy = __pthread_attr_setschedpolicy,