mirror of git://sourceware.org/git/glibc.git
Use TLS initial-exec model for __libc_tsd_CTYPE_* thread variables [BZ #33234]
Commit10a66a8e42
("Remove <libc-tsd.h>") removed the TLS initial-exec (IE) model attribute from the __libc_tsd_CTYPE_* thread variable declarations and definitions. Commita894f04d87
("Optimize __libc_tsd_* thread variable access") restored it on declarations. Restore the TLS initial-exec model attribute on __libc_tsd_CTYPE_* thread variable definitions. This resolves test tst-locale1 failure on s390 32-bit, when using a GNU linker without the fix from GNU binutils commit aefebe82dc89 ("IBM zSystems: Fix offset relative to static TLS"). Reviewed-by: Florian Weimer <fweimer@redhat.com> (cherry picked from commite5363e6f46
)
This commit is contained in:
parent
434e7e144a
commit
1b305e7e53
1
NEWS
1
NEWS
|
@ -28,6 +28,7 @@ The following bugs are resolved with this release:
|
|||
[32810] Crash on x86-64 if XSAVEC disable via tunable
|
||||
[32987] elf: Fix subprocess status handling for tst-dlopen-sgid
|
||||
[33185] Fix double-free after allocation failure in regcomp
|
||||
[33234] Use TLS initial-exec model for __libc_tsd_CTYPE_* thread variables
|
||||
|
||||
Version 2.40
|
||||
|
||||
|
|
|
@ -24,11 +24,11 @@
|
|||
__ctype_init before user code runs, but this does not happen for
|
||||
threads in secondary namespaces. With the initializers, secondary
|
||||
namespaces at least get locale data from the C locale. */
|
||||
__thread const uint16_t * __libc_tsd_CTYPE_B
|
||||
__thread const uint16_t * __libc_tsd_CTYPE_B attribute_tls_model_ie
|
||||
= (const uint16_t *) _nl_C_LC_CTYPE_class + 128;
|
||||
__thread const int32_t * __libc_tsd_CTYPE_TOLOWER
|
||||
__thread const int32_t * __libc_tsd_CTYPE_TOLOWER attribute_tls_model_ie
|
||||
= (const int32_t *) _nl_C_LC_CTYPE_tolower + 128;
|
||||
__thread const int32_t * __libc_tsd_CTYPE_TOUPPER
|
||||
__thread const int32_t * __libc_tsd_CTYPE_TOUPPER attribute_tls_model_ie
|
||||
= (const int32_t *) _nl_C_LC_CTYPE_toupper + 128;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue