diff options
author | Florian Weimer <fweimer@redhat.com> | 2020-05-15 11:09:05 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2020-05-20 20:23:20 +0200 |
commit | 52302bc298c99dc0d2ca3d1b07b4349129babae3 (patch) | |
tree | bca1827706ac187fc61f0a48555d34b293df2fa3 /nptl/Makefile | |
parent | 1979819d680bb5394a878261519f8a3e4a2886a1 (diff) | |
download | glibc-52302bc298c99dc0d2ca3d1b07b4349129babae3.tar glibc-52302bc298c99dc0d2ca3d1b07b4349129babae3.tar.gz glibc-52302bc298c99dc0d2ca3d1b07b4349129babae3.tar.bz2 glibc-52302bc298c99dc0d2ca3d1b07b4349129babae3.zip |
nptl: Move pthread_getaffinity_np into libc
This is part of the libpthread removal project:
<https://sourceware.org/ml/libc-alpha/2019-10/msg00080.html>
The abilist updates were performed by:
git ls-files 'sysdeps/unix/sysv/linux/**/libc.abilist' \
| while read x ; do
echo "GLIBC_2.32 pthread_getaffinity_np F" >> $x
done
python3 scripts/move-symbol-to-libc.py pthread_getaffinity_np
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'nptl/Makefile')
-rw-r--r-- | nptl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index 76f7d60584..7edad1c0c9 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -57,6 +57,7 @@ routines = \ pthread_condattr_destroy \ pthread_condattr_init \ pthread_equal \ + pthread_getaffinity \ pthread_getschedparam \ pthread_self \ pthread_setschedparam \ @@ -149,7 +150,7 @@ libpthread-routines = nptl-init nptlfreeres vars events version pt-interp \ sigaction \ herrno res pt-allocrtsig \ pthread_kill_other_threads \ - pthread_getaffinity pthread_setaffinity \ + pthread_setaffinity \ pthread_attr_getaffinity \ pthread_mutexattr_getrobust pthread_mutexattr_setrobust \ pthread_mutex_consistent \ |