mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
* 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.
This commit is contained in:
@@ -22,6 +22,9 @@
|
||||
#include <tls.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#ifdef SHARED
|
||||
#error makefile bug, this file is for static only
|
||||
#endif
|
||||
|
||||
#ifdef USE_TLS
|
||||
extern ElfW(Phdr) *_dl_phdr;
|
||||
@@ -47,6 +50,23 @@ static struct
|
||||
static struct link_map static_map;
|
||||
|
||||
|
||||
/* 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;
|
||||
|
||||
|
||||
/* Additional definitions needed by TLS initialization. */
|
||||
#ifdef TLS_INIT_HELPER
|
||||
TLS_INIT_HELPER
|
||||
|
Reference in New Issue
Block a user