X-Git-Url: https://git.lttng.org/?p=urcu.git;a=blobdiff_plain;f=include%2Furcu%2Ftls-compat.h;h=db22dde6758550cad1dbf329ef050c7916706ffd;hp=8ac1ea0615ddc2eb91ee51e9e15b89bd094d4c81;hb=109267f653502cf5ef5ada5d098167b9726daa2d;hpb=2f6618651c31c05ba1adbb5cdcf0d92980c38f38 diff --git a/include/urcu/tls-compat.h b/include/urcu/tls-compat.h index 8ac1ea0..db22dde 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,10 +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) \ + URCU_TLS_STORAGE_CLASS type name = (init) # define URCU_TLS(name) (name) @@ -95,14 +108,14 @@ struct urcu_tls { * Note: we don't free memory at process exit, since it will be dealt * with by the OS. */ -# define DEFINE_URCU_TLS_1(type, name) \ +# define DEFINE_URCU_TLS_INIT_1(type, name, do_init) \ type *__tls_access_ ## name(void) \ { \ static struct urcu_tls __tls_ ## name = { \ .init_mutex = PTHREAD_MUTEX_INITIALIZER,\ .init_done = 0, \ }; \ - void *__tls_p; \ + __typeof__(type) *__tls_p; \ if (!__tls_ ## name.init_done) { \ /* Mutex to protect concurrent init */ \ pthread_mutex_lock(&__tls_ ## name.init_mutex); \ @@ -118,14 +131,21 @@ struct urcu_tls { __tls_p = pthread_getspecific(__tls_ ## name.key); \ if (caa_unlikely(__tls_p == NULL)) { \ __tls_p = calloc(1, sizeof(type)); \ + do_init \ (void) pthread_setspecific(__tls_ ## name.key, \ __tls_p); \ } \ return __tls_p; \ } +# define _URCU_TLS_INIT(init) \ + *__tls_p = (init); + +# define DEFINE_URCU_TLS_INIT(type, name, init) \ + DEFINE_URCU_TLS_INIT_1(type, name, _URCU_TLS_INIT(init)) + # define DEFINE_URCU_TLS(type, name) \ - DEFINE_URCU_TLS_1(type, name) + DEFINE_URCU_TLS_INIT_1(type, name, /* empty */) # define URCU_TLS_1(name) (*__tls_access_ ## name())