about summary refs log tree commit diff
path: root/sysdeps/pthread/Makefile
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2021-05-03 08:12:12 +0200
committerFlorian Weimer <fweimer@redhat.com>2021-05-03 08:17:38 +0200
commitdeb317d5109aecd54573cc0340d23d641d80d45e (patch)
treeb8fdcb9f2dd6f016eccf0768e50acee18eed8d5f /sysdeps/pthread/Makefile
parente4036b1ce9fa2f4086b050eb946f169c11efad08 (diff)
downloadglibc-deb317d5109aecd54573cc0340d23d641d80d45e.tar.gz
glibc-deb317d5109aecd54573cc0340d23d641d80d45e.tar.xz
glibc-deb317d5109aecd54573cc0340d23d641d80d45e.zip
nptl: Move tss_delete into libc
The symbol was moved using scripts/move-symbol-to-libc.py.

__pthread_key_delete@@GLIBC_PRIVATE is no longer needed after that,
so it is removed as well.

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'sysdeps/pthread/Makefile')
-rw-r--r--sysdeps/pthread/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/pthread/Makefile b/sysdeps/pthread/Makefile
index 4b7e43078c..fd06d0a448 100644
--- a/sysdeps/pthread/Makefile
+++ b/sysdeps/pthread/Makefile
@@ -32,7 +32,7 @@ headers += threads.h
 routines += thrd_current thrd_equal thrd_sleep thrd_yield
 
 libpthread-routines += thrd_create thrd_detach thrd_join \
-		       tss_delete tss_get tss_set
+		       tss_get tss_set
 
 $(libpthread-routines-var) += \
   call_once \
@@ -50,6 +50,7 @@ $(libpthread-routines-var) += \
   mtx_unlock \
   thrd_exit \
   tss_create \
+  tss_delete \
 
 tests += tst-cnd-basic tst-mtx-trylock tst-cnd-broadcast \
 	 tst-cnd-timedwait tst-thrd-detach tst-mtx-basic tst-thrd-sleep \