diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-05-03 08:12:12 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-05-03 08:17:15 +0200 |
commit | 96e61709b49c3ebe4fa49c235ddafaad1f1dfc84 (patch) | |
tree | e4b70b05f8bcf16d54d0ad9761149b15d3f4913c /sysdeps/unix/sysv/linux/csky | |
parent | ae4a5ca07496e8ae8a74924095f0161d4c759328 (diff) | |
download | glibc-96e61709b49c3ebe4fa49c235ddafaad1f1dfc84.zip glibc-96e61709b49c3ebe4fa49c235ddafaad1f1dfc84.tar.gz glibc-96e61709b49c3ebe4fa49c235ddafaad1f1dfc84.tar.bz2 |
nptl: Move thrd_exit into libc
The symbol was moved using scripts/move-symbol-to-libc.py.
The __pthread_exit@@GLIBC_PRIVATE symbol is no longer needed
after this change, so remove it.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'sysdeps/unix/sysv/linux/csky')
-rw-r--r-- | sysdeps/unix/sysv/linux/csky/libc.abilist | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/csky/libpthread.abilist | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/csky/libc.abilist b/sysdeps/unix/sysv/linux/csky/libc.abilist index 97dfaf2..7a9c182 100644 --- a/sysdeps/unix/sysv/linux/csky/libc.abilist +++ b/sysdeps/unix/sysv/linux/csky/libc.abilist @@ -1918,6 +1918,7 @@ GLIBC_2.29 textdomain F GLIBC_2.29 tfind F GLIBC_2.29 thrd_current F GLIBC_2.29 thrd_equal F +GLIBC_2.29 thrd_exit F GLIBC_2.29 thrd_sleep F GLIBC_2.29 thrd_yield F GLIBC_2.29 time F @@ -2250,3 +2251,4 @@ GLIBC_2.34 pthread_spin_init F GLIBC_2.34 pthread_spin_lock F GLIBC_2.34 pthread_spin_trylock F GLIBC_2.34 pthread_spin_unlock F +GLIBC_2.34 thrd_exit F diff --git a/sysdeps/unix/sysv/linux/csky/libpthread.abilist b/sysdeps/unix/sysv/linux/csky/libpthread.abilist index 8f2662e..57a14c0 100644 --- a/sysdeps/unix/sysv/linux/csky/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/csky/libpthread.abilist @@ -71,7 +71,6 @@ GLIBC_2.29 sem_unlink F GLIBC_2.29 sem_wait F GLIBC_2.29 thrd_create F GLIBC_2.29 thrd_detach F -GLIBC_2.29 thrd_exit F GLIBC_2.29 thrd_join F GLIBC_2.29 tss_create F GLIBC_2.29 tss_delete F |