summaryrefslogtreecommitdiff
path: root/elf/dl-support.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-10-18 01:13:06 +0000
committerRoland McGrath <roland@gnu.org>2002-10-18 01:13:06 +0000
commitb9cb349fb4fcec60fe99535dbab062ffe7a7ac49 (patch)
tree10070a4ce41d889b8ec9a37efb5677f10ee7c144 /elf/dl-support.c
parent1f0c4a1006d76e7115340325388b26fd50cd0cad (diff)
* aclocal.m4 (GLIBC_PROVIDES): Add AC_PROVIDE([_AS_ECHO_N_PREPARE]).
Remove AC_LANG(C) call, instead just define([_AC_LANG], [C]). * elf/dl-support.c: Move _dl_tls_* variables to ... * sysdeps/generic/libc-tls.c: ... here. * elf/dl-close.c (remove_slotinfo): Take new argument. If false, allow IDX to be one past the current last slotinfo entry. (_dl_close): Pass IMAP->l_init_called for that parameter.
Diffstat (limited to 'elf/dl-support.c')
-rw-r--r--elf/dl-support.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/elf/dl-support.c b/elf/dl-support.c
index 70ab30aedc..b4b185fd97 100644
--- a/elf/dl-support.c
+++ b/elf/dl-support.c
@@ -140,25 +140,6 @@ size_t _dl_phnum;
At this time it is not anymore a problem to modify the tables. */
__libc_lock_define_initialized_recursive (, _dl_load_lock)
-#ifdef USE_TLS
-
-/* Highest dtv index currently needed. */
-size_t _dl_tls_max_dtv_idx;
-/* Flag signalling whether there are gaps in the module ID allocation. */
-bool _dl_tls_dtv_gaps;
-/* Information about the dtv slots. */
-struct dtv_slotinfo_list *_dl_tls_dtv_slotinfo_list;
-/* Number of modules in the static TLS block. */
-size_t _dl_tls_static_nelem;
-/* Size of the static TLS block. */
-size_t _dl_tls_static_size;
-/* Alignment requirement of the static TLS block. */
-size_t _dl_tls_static_align;
-
-/* Generation counter for the dtv. */
-size_t _dl_tls_generation;
-#endif
-
#ifdef HAVE_AUX_VECTOR
int _dl_clktck;