diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-03-17 01:28:41 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-03-25 00:52:39 +0100 |
commit | bcfa607b26c2399d4fda88705d40978d62af8bf3 (patch) | |
tree | b13774ef00a4531ba760954a1d3cc9f7e48731cb /sysdeps/generic | |
parent | fa97d2ab5b19de0ca3cd02471d0bbf4f09b5032d (diff) | |
download | glibc-bcfa607b26c2399d4fda88705d40978d62af8bf3.zip glibc-bcfa607b26c2399d4fda88705d40978d62af8bf3.tar.gz glibc-bcfa607b26c2399d4fda88705d40978d62af8bf3.tar.bz2 |
hurd: Initialize TLS and libpthread before signal thread start
* sysdeps/generic/libc-start.h [!SHARED] (ARCH_SETUP_TLS): Define to
__libc_setup_tls.
* sysdeps/unix/sysv/linux/powerpc/libc-start.h [!SHARED]
(ARCH_SETUP_TLS): Likewise.
* sysdeps/mach/hurd/libc-start.h: New file copied from
sysdeps/generic/libc-start.h, but define ARCH_SETUP_TLS to empty.
* csu/libc-start.c [!SHARED] (LIBC_START_MAIN): Call ARCH_SETUP_TLS instead
of __libc_setup_tls.
* sysdeps/mach/hurd/i386/init-first.c [!SHARED] (init1): Call
__libc_setup_tls before initializing libpthread and running _hurd_init which
starts the signal thread.
Diffstat (limited to 'sysdeps/generic')
-rw-r--r-- | sysdeps/generic/libc-start.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/generic/libc-start.h b/sysdeps/generic/libc-start.h index 6c416a1..e0361f6 100644 --- a/sysdeps/generic/libc-start.h +++ b/sysdeps/generic/libc-start.h @@ -24,6 +24,7 @@ initialization, and this means you cannot, without machine knowledge, access TLS from an IFUNC resolver. */ #define ARCH_SETUP_IREL() apply_irel () +#define ARCH_SETUP_TLS() __libc_setup_tls () #define ARCH_APPLY_IREL() #endif /* ! SHARED */ |