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 */
37 # define DECLARE_URCU_TLS(type, name) \
38 CONFIG_RCU_TLS type name
40 # define DEFINE_URCU_TLS(type, name) \
41 CONFIG_RCU_TLS type name
43 # define URCU_TLS(name) (name)
45 #else /* #ifndef CONFIG_RCU_TLS */
51 pthread_mutex_t init_mutex
;
55 # define DECLARE_URCU_TLS(type, name) \
56 type *__tls_access_ ## name(void)
59 * Note: we don't free memory at process exit, since it will be dealt
62 # define DEFINE_URCU_TLS(type, name) \
63 type *__tls_access_ ## name(void) \
65 static struct urcu_tls __tls_ ## name = { \
66 .init_mutex = PTHREAD_MUTEX_INITIALIZER,\
70 if (!__tls_ ## name.init_done) { \
71 /* Mutex to protect concurrent init */ \
72 pthread_mutex_lock(&__tls_ ## name.init_mutex); \
73 if (!__tls_ ## name.init_done) { \
74 (void) pthread_key_create(&__tls_ ## name.key, \
76 cmm_smp_wmb(); /* create key before write init_done */ \
77 __tls_ ## name.init_done = 1; \
79 pthread_mutex_unlock(&__tls_ ## name.init_mutex); \
81 cmm_smp_rmb(); /* read init_done before getting key */ \
82 __tls_p = pthread_getspecific(__tls_ ## name.key); \
83 if (caa_unlikely(__tls_p == NULL)) { \
84 __tls_p = calloc(1, sizeof(type)); \
85 (void) pthread_setspecific(__tls_ ## name.key, \
91 # define URCU_TLS(name) (*__tls_access_ ## name())
93 #endif /* #else #ifndef CONFIG_RCU_TLS */
99 #endif /* _URCU_TLS_COMPAT_H */