1 #ifndef _URCU_TLS_COMPAT_H
2 #define _URCU_TLS_COMPAT_H
7 * Userspace RCU library - Thread-Local Storage Compatibility Header
9 * Copyright 2012 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 #include <urcu/config.h>
28 #include <urcu/compiler.h>
29 #include <urcu/arch.h>
35 #ifdef CONFIG_RCU_TLS /* Based on ax_tls.m4 */
38 * Hint: How to define/declare TLS variables of compound types
39 * such as array or function pointers?
41 * Answer: Use typedef to assign a type_name to the compound type.
42 * Example: Define a TLS variable which is an int array with len=4:
44 * typedef int my_int_array_type[4];
45 * DEFINE_URCU_TLS(my_int_array_type, var_name);
48 * typedef void (*call_rcu_flavor)(struct rcu_head *, XXXX);
49 * DECLARE_URCU_TLS(call_rcu_flavor, p_call_rcu);
52 # define DECLARE_URCU_TLS(type, name) \
53 CONFIG_RCU_TLS type name
55 # define DEFINE_URCU_TLS(type, name) \
56 CONFIG_RCU_TLS type name
58 # define URCU_TLS(name) (name)
60 #else /* #ifndef CONFIG_RCU_TLS */
66 pthread_mutex_t init_mutex
;
70 # define DECLARE_URCU_TLS(type, name) \
71 type *__tls_access_ ## name(void)
74 * Note: we don't free memory at process exit, since it will be dealt
77 # define DEFINE_URCU_TLS(type, name) \
78 type *__tls_access_ ## name(void) \
80 static struct urcu_tls __tls_ ## name = { \
81 .init_mutex = PTHREAD_MUTEX_INITIALIZER,\
85 if (!__tls_ ## name.init_done) { \
86 /* Mutex to protect concurrent init */ \
87 pthread_mutex_lock(&__tls_ ## name.init_mutex); \
88 if (!__tls_ ## name.init_done) { \
89 (void) pthread_key_create(&__tls_ ## name.key, \
91 cmm_smp_wmb(); /* create key before write init_done */ \
92 __tls_ ## name.init_done = 1; \
94 pthread_mutex_unlock(&__tls_ ## name.init_mutex); \
96 cmm_smp_rmb(); /* read init_done before getting key */ \
97 __tls_p = pthread_getspecific(__tls_ ## name.key); \
98 if (caa_unlikely(__tls_p == NULL)) { \
99 __tls_p = calloc(1, sizeof(type)); \
100 (void) pthread_setspecific(__tls_ ## name.key, \
106 # define URCU_TLS(name) (*__tls_access_ ## name())
108 #endif /* #else #ifndef CONFIG_RCU_TLS */
114 #endif /* _URCU_TLS_COMPAT_H */