diff options
author | Florian Weimer <fweimer@redhat.com> | 2020-05-15 11:01:49 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2020-05-20 20:27:49 +0200 |
commit | 07a73d521988a7fdea1bb3c3b5bbb2b23a0da2e1 (patch) | |
tree | 98f7dc6b3c80ec12f8f5a2fa759bc03e09de453a /sysdeps/unix/sysv/linux/riscv | |
parent | 52302bc298c99dc0d2ca3d1b07b4349129babae3 (diff) | |
download | glibc-07a73d521988a7fdea1bb3c3b5bbb2b23a0da2e1.zip glibc-07a73d521988a7fdea1bb3c3b5bbb2b23a0da2e1.tar.gz glibc-07a73d521988a7fdea1bb3c3b5bbb2b23a0da2e1.tar.bz2 |
nptl: Move pthread_gettattr_np into libc
This is part of the libpthread removal project:
<https://sourceware.org/ml/libc-alpha/2019-10/msg00080.html>
Use __getline instead of __getdelim to avoid a localplt failure.
Likewise for __getrlimit/getrlimit.
The abilist updates were performed by:
git ls-files 'sysdeps/unix/sysv/linux/**/libc.abilist' \
| while read x ; do
echo "GLIBC_2.32 pthread_getattr_np F" >> $x
done
python3 scripts/move-symbol-to-libc.py --only-linux pthread_getattr_np
The private export of __pthread_getaffinity_np is no longer needed, but
the hidden alias still necessary so that the symbol can be exported with
versioned_symbol.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'sysdeps/unix/sysv/linux/riscv')
-rw-r--r-- | sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist b/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist index 029c60d..6d5a52d 100644 --- a/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist +++ b/sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist @@ -1431,6 +1431,7 @@ GLIBC_2.27 pthread_condattr_init F GLIBC_2.27 pthread_equal F GLIBC_2.27 pthread_exit F GLIBC_2.27 pthread_getaffinity_np F +GLIBC_2.27 pthread_getattr_np F GLIBC_2.27 pthread_getschedparam F GLIBC_2.27 pthread_mutex_destroy F GLIBC_2.27 pthread_mutex_init F @@ -2112,4 +2113,5 @@ GLIBC_2.30 tgkill F GLIBC_2.30 twalk_r F GLIBC_2.32 pthread_attr_setaffinity_np F GLIBC_2.32 pthread_getaffinity_np F +GLIBC_2.32 pthread_getattr_np F GLIBC_2.32 pthread_sigmask F diff --git a/sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist b/sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist index 41a796e..894c474 100644 --- a/sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist @@ -93,7 +93,6 @@ GLIBC_2.27 pthread_create F GLIBC_2.27 pthread_detach F GLIBC_2.27 pthread_exit F GLIBC_2.27 pthread_getattr_default_np F -GLIBC_2.27 pthread_getattr_np F GLIBC_2.27 pthread_getconcurrency F GLIBC_2.27 pthread_getcpuclockid F GLIBC_2.27 pthread_getname_np F |