X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=include%2Furcu%2Ftls-compat.h;h=24ef1b9a42b6dccad0f4864dc574654fffc3b60e;hp=c17aca36b2c86a4b94f95e1c97c8aaa327f1f4a7;hb=4af3e30942f82d6c4b408ecac178e0beb50a4943;hpb=cb1f3ebfa99c3d49962fa2421ea3ae33d8dad757 diff --git a/include/urcu/tls-compat.h b/include/urcu/tls-compat.h index c17aca3..24ef1b9 100644 --- a/include/urcu/tls-compat.h +++ b/include/urcu/tls-compat.h @@ -32,7 +32,17 @@ extern "C" { #endif -#ifdef CONFIG_RCU_TLS /* Based on ax_tls.m4 */ +#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) +# define URCU_TLS_STORAGE_CLASS __declspec(thread) +#else +# define URCU_TLS_STORAGE_CLASS __thread +#endif /* * Hint: How to define/declare TLS variables of compound types @@ -65,13 +75,13 @@ extern "C" { */ # define DECLARE_URCU_TLS(type, name) \ - CONFIG_RCU_TLS type name + URCU_TLS_STORAGE_CLASS type name # define DEFINE_URCU_TLS(type, name) \ - CONFIG_RCU_TLS type name + URCU_TLS_STORAGE_CLASS type name # define DEFINE_URCU_TLS_INIT(type, name, init) \ - CONFIG_RCU_TLS type name = (init) + URCU_TLS_STORAGE_CLASS type name = (init) # define URCU_TLS(name) (name)