diff options
Diffstat (limited to 'libc/private/bionic_globals.h')
-rw-r--r-- | libc/private/bionic_globals.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/private/bionic_globals.h b/libc/private/bionic_globals.h index ceda38a4e..b5e677e55 100644 --- a/libc/private/bionic_globals.h +++ b/libc/private/bionic_globals.h @@ -33,6 +33,7 @@ #include <link.h> #include <pthread.h> +#include "private/bionic_elf_tls.h" #include "private/bionic_fdsan.h" #include "private/bionic_malloc_dispatch.h" #include "private/bionic_vdso.h" @@ -67,6 +68,8 @@ struct libc_shared_globals { pthread_mutex_t abort_msg_lock = PTHREAD_MUTEX_INITIALIZER; abort_msg_t* abort_msg = nullptr; + StaticTlsLayout static_tls_layout; + // Values passed from the linker to libc.so. const char* init_progname = nullptr; char** init_environ = nullptr; |