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 /nptl/Versions | |
parent | ae4a5ca07496e8ae8a74924095f0161d4c759328 (diff) | |
download | glibc-96e61709b49c3ebe4fa49c235ddafaad1f1dfc84.tar glibc-96e61709b49c3ebe4fa49c235ddafaad1f1dfc84.tar.gz glibc-96e61709b49c3ebe4fa49c235ddafaad1f1dfc84.tar.bz2 glibc-96e61709b49c3ebe4fa49c235ddafaad1f1dfc84.zip |
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 'nptl/Versions')
-rw-r--r-- | nptl/Versions | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/Versions b/nptl/Versions index 47704ba4d1..834fdbbd87 100644 --- a/nptl/Versions +++ b/nptl/Versions @@ -141,6 +141,7 @@ libc { mtx_unlock; thrd_current; thrd_equal; + thrd_exit; thrd_sleep; thrd_yield; } @@ -210,6 +211,7 @@ libc { pthread_spin_lock; pthread_spin_trylock; pthread_spin_unlock; + thrd_exit; } GLIBC_PRIVATE { __futex_abstimed_wait64; @@ -239,7 +241,6 @@ libc { __pthread_cleanup_push; __pthread_cleanup_upto; __pthread_current_priority; - __pthread_exit; __pthread_force_elision; __pthread_getattr_default_np; __pthread_key_delete; @@ -389,7 +390,6 @@ libpthread { GLIBC_2.28 { thrd_create; thrd_detach; - thrd_exit; thrd_join; tss_create; tss_delete; |