diff options
author | John Baldwin <jhb@FreeBSD.org> | 2021-02-18 00:34:23 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2021-02-18 00:34:23 +0000 |
commit | 24fd63e0970f91189dd2acde987bd2e4c8c04a50 (patch) | |
tree | f59286ec2192627d1c0751ab3dbbcb171322c7ba | |
parent | dd176fd7e7b5aad231cd6ebf49fd14ae7394dfee (diff) | |
download | src-24fd63e0970f91189dd2acde987bd2e4c8c04a50.tar.gz src-24fd63e0970f91189dd2acde987bd2e4c8c04a50.zip |
mips: Don't set __NO_TLS to disable some uses of TLS.
__NO_TLS was originally added to disable use of _Thread in the locale
code in libc in 82dd5016bd749d1d9e1531bd1703aebeecceab34. At the time
libc did not support TLS on MIPS (I believe), but TLS support was
added to libc (at least _set_tp.c) for MIPS about a month after
__NO_TLS was added, but __NO_TLS was still left around.
Reviewed by: imp
Sponsored by: DARPA
Differential Revision: https://reviews.freebsd.org/D28713
-rw-r--r-- | sys/sys/cdefs.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/sys/cdefs.h b/sys/sys/cdefs.h index 64f26480a2f5..ff18911f6acf 100644 --- a/sys/sys/cdefs.h +++ b/sys/sys/cdefs.h @@ -768,8 +768,7 @@ #endif #endif /* __STDC_WANT_LIB_EXT1__ */ -#if defined(__mips) || \ - (defined(__powerpc64__) && (!defined(_CALL_ELF) || _CALL_ELF == 1)) +#if defined(__powerpc64__) && (!defined(_CALL_ELF) || _CALL_ELF == 1) #define __NO_TLS 1 #endif |