X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=include%2Furcu%2Ftls-compat.h;h=a2c94ded9cd9833558bb25d19b9908c6f47a9007;hb=a3415009881c13c7401ab4b8d7c0216bbee63ce2;hp=24ef1b9a42b6dccad0f4864dc574654fffc3b60e;hpb=4af3e30942f82d6c4b408ecac178e0beb50a4943;p=urcu.git diff --git a/include/urcu/tls-compat.h b/include/urcu/tls-compat.h index 24ef1b9..a2c94de 100644 --- a/include/urcu/tls-compat.h +++ b/include/urcu/tls-compat.h @@ -34,11 +34,15 @@ extern "C" { #ifdef CONFIG_RCU_TLS -#if defined (__cplusplus) && (__cplusplus >= 201103L) -# define URCU_TLS_STORAGE_CLASS thread_local -#elif defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) -# define URCU_TLS_STORAGE_CLASS _Thread_local -#elif defined (_MSC_VER) +/* + * Default to '__thread' on all C and C++ compilers except MSVC. While C11 has + * '_Thread_local' and C++11 has 'thread_local', only '__thread' seems to have + * a compatible implementation when linking public extern symbols across + * language boundaries. + * + * For more details, see 'https://gcc.gnu.org/onlinedocs/gcc/Thread-Local.html'. + */ +#if defined(_MSC_VER) # define URCU_TLS_STORAGE_CLASS __declspec(thread) #else # define URCU_TLS_STORAGE_CLASS __thread