diff options
author | Florian Weimer <fweimer@redhat.com> | 2019-10-07 15:49:48 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2019-10-07 15:49:48 +0200 |
commit | 0caab6638e22a301e8aa0b35f790b15aaf0791d9 (patch) | |
tree | e816389a0615dc2b1ce0710d80d419f5a2472717 /nptl/Makefile | |
parent | 77523d5e43cb5721c23855eb6045b0607a3b30a0 (diff) | |
download | glibc-0caab6638e22a301e8aa0b35f790b15aaf0791d9.tar glibc-0caab6638e22a301e8aa0b35f790b15aaf0791d9.tar.gz glibc-0caab6638e22a301e8aa0b35f790b15aaf0791d9.tar.bz2 glibc-0caab6638e22a301e8aa0b35f790b15aaf0791d9.zip |
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/Makefile')
-rw-r--r-- | nptl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index 53c556e503..5ade150b62 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 \ |