From 5580f1544d434997f1ddfbb4785a7a447f75e605 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 25 Oct 2002 19:41:31 +0000 Subject: * sysdeps/unix/sysv/linux/init-first.c (init): Remove [! SHARED] conditional from __libc_multiple_libcs access. Remove kludge for weak symbol access with old compilers we no longer support. * sysdeps/unix/sysv/aix/init-first.c (init): Likewise. * sysdeps/generic/libc-start.c (__libc_start_main): Likewise. 2002-10-24 Roland McGrath * sysdeps/generic/ldsodefs.h (struct rtld_global): New member `_dl_tls_static_used'. (TLS_STATIC_MIN): New macro. * sysdeps/generic/libc-tls.c (_dl_tls_static_used): New variable. (__libc_setup_tls): Initialize it. * sysdeps/generic/dl-tls.c (_dl_determine_tlsoffset): Likewise. * elf/dl-reloc.c [USE_TLS] (allocate_static_tls): New function. (CHECK_STATIC_TLS): Use it. * elf/dl-close.c (_dl_close): Adjust _dl_tls_static_used when the closed objects occupied a trailing contiguous chunk of static TLS area. 2002-10-25 Roland McGrath --- sysdeps/generic/libc-start.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'sysdeps/generic/libc-start.c') diff --git a/sysdeps/generic/libc-start.c b/sysdeps/generic/libc-start.c index 806ed789cc..ef02b1819f 100644 --- a/sysdeps/generic/libc-start.c +++ b/sysdeps/generic/libc-start.c @@ -64,13 +64,7 @@ BP_SYM (__libc_start_main) (int (*main) (int, char **, char **), /* Result of the 'main' function. */ int result; -#ifndef SHARED -# ifdef HAVE_AUX_VECTOR - void *__unbounded *__unbounded auxvec; -# endif - __libc_multiple_libcs = &_dl_starting_up && !_dl_starting_up; -#endif INIT_ARGV_and_ENVIRON; @@ -79,6 +73,7 @@ BP_SYM (__libc_start_main) (int (*main) (int, char **, char **), #ifndef SHARED # ifdef HAVE_AUX_VECTOR + void *__unbounded *__unbounded auxvec; /* First process the auxiliary vector since we need to find the program header to locate an eventually present PT_TLS entry. */ for (auxvec = (void *__unbounded *__unbounded) ubp_ev; -- cgit 1.4.1