Ensure a tls key is only generated once - wrap create & destroy in a mutex.
[Samba/gebeck_regimport.git] / lib / util / smb_threads_internal.h
blob58c6fe3f99a11e83014804720318998c0e9f8318
1 /*
2 SMB/CIFS implementation.
3 SMB thread interface internal macros.
4 Copyright (C) Jeremy Allison, 2009.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef _smb_threads_internal_h_
21 #define _smb_threads_internal_h_
23 #define SMB_THREAD_CREATE_MUTEX(name, lockvar) \
24 (global_tfp ? global_tfp->create_mutex((name), &(lockvar), __location__) : 0)
26 #define SMB_THREAD_DESTROY_MUTEX(plock) \
27 do { \
28 if (global_tfp) { \
29 global_tfp->destroy_mutex(plock, __location__); \
30 }; \
31 } while (0)
33 #define SMB_THREAD_LOCK(plock, type) \
34 (global_tfp ? global_tfp->lock_mutex((plock), (type), __location__) : 0)
36 #define SMB_THREAD_CREATE_TLS_ONCE(keyname, key) \
37 (global_tfp ? global_tfp->create_tls_once((keyname), &(key), __location__) : 0)
39 #define SMB_THREAD_DESTROY_TLS_ONCE(key) \
40 do { \
41 if (global_tfp) { \
42 global_tfp->destroy_tls_once(&(key), __location__); \
43 }; \
44 } while (0)
46 #define SMB_THREAD_SET_TLS(key, val) \
47 (global_tfp ? global_tfp->set_tls((key),(val),__location__) : \
48 ((key) = (val), 0))
50 #define SMB_THREAD_GET_TLS(key) \
51 (global_tfp ? global_tfp->get_tls((key), __location__) : (key))
54 * Global thread lock list.
57 #define NUM_GLOBAL_LOCKS 1
59 #define GLOBAL_LOCK(locknum) (global_lock_array ? global_lock_array[(locknum)] : NULL)
61 #endif