From ea3109b772d7eb7abac01640f7c00fa1eafbd8ca Mon Sep 17 00:00:00 2001 From: Carmelo Amoroso Date: Fri, 20 Feb 2009 13:36:21 +0000 Subject: Use __UCLIBC_HAS_TLS__ (now available) as guard for TLS related stuff, instead of __UCLIBC_HAS_THREADS_NATIVE__. This is in preparation on trunk merge to make TLS compatible with LT (new) and NPTL. Signed-off-by: Carmelo Amoroso --- include/libc-internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/libc-internal.h') diff --git a/include/libc-internal.h b/include/libc-internal.h index 525444ac8..33956d8b1 100644 --- a/include/libc-internal.h +++ b/include/libc-internal.h @@ -27,7 +27,7 @@ # define attribute_relro #endif -#ifdef __UCLIBC_HAS_THREADS_NATIVE__ +#ifdef __UCLIBC_HAS_TLS__ # define attribute_tls_model_ie __attribute__ ((tls_model ("initial-exec"))) #endif -- cgit v1.2.3