2 * The UCW Library -- Threading Helpers
4 * (c) 2006 Martin Mares <mj@ucw.cz>
6 * This software may be freely distributed and used according to the terms
7 * of the GNU Lesser General Public License.
11 #include "lib/threads.h"
13 #ifdef CONFIG_UCW_THREADS
17 static pthread_key_t ucwlib_context_key;
18 static pthread_mutex_t ucwlib_master_mutex;
21 ucwlib_free_thread_context(void *p)
26 static void CONSTRUCTOR
27 ucwlib_threads_init(void)
29 if (pthread_key_create(&ucwlib_context_key, ucwlib_free_thread_context) < 0)
30 die("Cannot create pthread_key: %m");
31 pthread_mutex_init(&ucwlib_master_mutex, NULL);
34 struct ucwlib_context *
35 ucwlib_thread_context(void)
37 struct ucwlib_context *c = pthread_getspecific(ucwlib_context_key);
40 c = xmalloc_zero(sizeof(*c));
41 pthread_setspecific(ucwlib_context_key, c);
49 pthread_mutex_lock(&ucwlib_master_mutex);
55 pthread_mutex_unlock(&ucwlib_master_mutex);
60 struct ucwlib_context *
61 ucw_thread_context(void)
63 static struct ucwlib_context ucwlib_context;
64 return &ucwlib_context;
85 ucwlib_thread_context();