1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * gmutex.c: MT safety related functions
5 * Copyright 1998 Sebastian Wilhelmi; University of Karlsruhe
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the
20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 * Boston, MA 02111-1307, USA.
25 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
26 * file for a list of people on the GLib Team. See the ChangeLog
27 * files for a list of changes. These files are distributed with
28 * GLib at ftp://ftp.gtk.org/pub/gtk/.
42 #if GLIB_SIZEOF_SYSTEM_THREAD == SIZEOF_VOID_P
43 # define g_system_thread_equal(thread1, thread2) \
44 (thread1.dummy_pointer == thread2.dummy_pointer)
45 # define g_system_thread_assign(dest, src) \
46 (dest.dummy_pointer = src.dummy_pointer)
47 #else /* GLIB_SIZEOF_SYSTEM_THREAD != SIZEOF_VOID_P */
48 # define g_system_thread_equal(thread1, thread2) \
49 (memcmp (&thread1, &thread2, GLIB_SIZEOF_SYSTEM_THREAD) == 0)
50 # define g_system_thread_assign(dest, src) \
51 (memcpy (&dest, &src, GLIB_SIZEOF_SYSTEM_THREAD))
52 #endif /* GLIB_SIZEOF_SYSTEM_THREAD == SIZEOF_VOID_P */
55 g_thread_error_quark()
58 G_LOCK_DEFINE_STATIC(lock);
63 quark = g_quark_from_static_string ("g-thread-error");
69 typedef struct _GRealThread GRealThread;
75 gpointer private_data;
76 GSystemThread system_thread;
79 typedef struct _GStaticPrivateNode GStaticPrivateNode;
80 struct _GStaticPrivateNode
83 GDestroyNotify destroy;
86 static void g_thread_cleanup (gpointer data);
87 static void g_thread_fail (void);
89 /* Global variables */
91 static GSystemThread zero_thread; /* This is initialized to all zero */
92 gboolean g_thread_use_default_impl = TRUE;
93 gboolean g_threads_got_initialized = FALSE;
95 #if defined(G_OS_WIN32) && defined(__GNUC__)
98 GThreadFunctions g_thread_functions_for_glib_use = {
99 (GMutex*(*)())g_thread_fail, /* mutex_new */
100 NULL, /* mutex_lock */
101 NULL, /* mutex_trylock */
102 NULL, /* mutex_unlock */
103 NULL, /* mutex_free */
104 (GCond*(*)())g_thread_fail, /* cond_new */
105 NULL, /* cond_signal */
106 NULL, /* cond_broadcast */
107 NULL, /* cond_wait */
108 NULL, /* cond_timed_wait */
109 NULL, /* cond_free */
110 (GPrivate*(*)(GDestroyNotify))g_thread_fail, /* private_new */
111 NULL, /* private_get */
112 NULL, /* private_set */
113 (void(*)(GThreadFunc, gpointer, gulong,
114 gboolean, gboolean, GThreadPriority,
115 gpointer, GError**))g_thread_fail, /* thread_create */
116 NULL, /* thread_yield */
117 NULL, /* thread_join */
118 NULL, /* thread_exit */
119 NULL, /* thread_set_priority */
120 NULL /* thread_self */
125 static GMutex *g_mutex_protect_static_mutex_allocation = NULL;
126 static GMutex *g_thread_specific_mutex = NULL;
127 static GPrivate *g_thread_specific_private = NULL;
129 /* This must be called only once, before any threads are created.
130 * It will only be called from g_thread_init() in -lgthread.
135 GRealThread* main_thread;
137 /* We let the main thread (the one that calls g_thread_init) inherit
138 * the data, that it set before calling g_thread_init
140 main_thread = (GRealThread*) g_thread_self ();
142 g_thread_specific_private = g_private_new (g_thread_cleanup);
143 G_THREAD_UF (private_set, (g_thread_specific_private, main_thread));
144 G_THREAD_UF (thread_self, (&main_thread->system_thread));
146 g_mutex_protect_static_mutex_allocation = g_mutex_new();
147 g_thread_specific_mutex = g_mutex_new();
151 g_static_mutex_get_mutex_impl (GMutex** mutex)
153 if (!g_thread_supported ())
156 g_assert (g_mutex_protect_static_mutex_allocation);
158 g_mutex_lock (g_mutex_protect_static_mutex_allocation);
161 *mutex = g_mutex_new();
163 g_mutex_unlock (g_mutex_protect_static_mutex_allocation);
169 g_static_rec_mutex_lock (GStaticRecMutex* mutex)
173 g_return_if_fail (mutex);
175 G_THREAD_UF (thread_self, (&self));
177 if (g_system_thread_equal (self, mutex->owner))
182 g_static_mutex_lock (&mutex->mutex);
183 g_system_thread_assign (mutex->owner, self);
188 g_static_rec_mutex_trylock (GStaticRecMutex* mutex)
192 g_return_val_if_fail (mutex, FALSE);
194 G_THREAD_UF (thread_self, (&self));
196 if (g_system_thread_equal (self, mutex->owner))
202 if (!g_static_mutex_trylock (&mutex->mutex))
205 g_system_thread_assign (mutex->owner, self);
211 g_static_rec_mutex_unlock (GStaticRecMutex* mutex)
213 g_return_if_fail (mutex);
215 if (mutex->depth > 1)
220 g_system_thread_assign (mutex->owner, zero_thread);
221 g_static_mutex_unlock (&mutex->mutex);
225 g_static_rec_mutex_lock_full (GStaticRecMutex *mutex,
228 g_return_if_fail (mutex);
230 g_static_mutex_lock (&mutex->mutex);
231 G_THREAD_UF (thread_self, (&mutex->owner));
232 mutex->depth = depth;
236 g_static_rec_mutex_unlock_full (GStaticRecMutex *mutex)
238 gint depth = mutex->depth;
240 g_return_val_if_fail (mutex, 0);
242 g_system_thread_assign (mutex->owner, zero_thread);
244 g_static_mutex_unlock (&mutex->mutex);
251 g_static_private_get (GStaticPrivate *private_key)
253 return g_static_private_get_for_thread (private_key, g_thread_self ());
257 g_static_private_get_for_thread (GStaticPrivate *private_key,
261 GRealThread *self = (GRealThread*) thread;
263 g_return_val_if_fail (thread, NULL);
265 array = self->private_data;
269 if (!private_key->index)
271 else if (private_key->index <= array->len)
272 return g_array_index (array, GStaticPrivateNode, private_key->index - 1).data;
278 g_static_private_set (GStaticPrivate *private_key,
280 GDestroyNotify notify)
282 g_static_private_set_for_thread (private_key, g_thread_self (),
287 g_static_private_set_for_thread (GStaticPrivate *private_key,
290 GDestroyNotify notify)
293 GRealThread *self =(GRealThread*) thread;
294 static guint next_index = 0;
295 GStaticPrivateNode *node;
297 g_return_if_fail (thread);
299 array = self->private_data;
302 array = g_array_new (FALSE, TRUE, sizeof (GStaticPrivateNode));
303 self->private_data = array;
306 if (!private_key->index)
308 g_mutex_lock (g_thread_specific_mutex);
310 if (!private_key->index)
311 private_key->index = ++next_index;
313 g_mutex_unlock (g_thread_specific_mutex);
316 if (private_key->index > array->len)
317 g_array_set_size (array, private_key->index);
319 node = &g_array_index (array, GStaticPrivateNode, private_key->index - 1);
322 gpointer ddata = node->data;
323 GDestroyNotify ddestroy = node->destroy;
326 node->destroy = notify;
333 node->destroy = notify;
338 g_thread_cleanup (gpointer data)
342 GRealThread* thread = data;
343 if (thread->private_data)
345 GArray* array = thread->private_data;
348 for (i = 0; i < array->len; i++ )
350 GStaticPrivateNode *node =
351 &g_array_index (array, GStaticPrivateNode, i);
353 node->destroy (node->data);
355 g_array_free (array, TRUE);
357 /* We only free the thread structure, if it isn't joinable. If
358 it is, the structure is freed in g_thread_join */
359 if (!thread->thread.joinable)
361 /* Just to make sure, this isn't used any more */
362 g_system_thread_assign (thread->system_thread, zero_thread);
371 g_error ("The thread system is not yet initialized.");
374 G_LOCK_DEFINE_STATIC (g_thread_create);
377 g_thread_create_proxy (gpointer data)
379 GRealThread* thread = data;
383 /* the lock makes sure, that thread->system_thread is written,
384 before thread->func is called. See g_thread_create */
386 G_LOCK (g_thread_create);
387 g_private_set (g_thread_specific_private, data);
388 G_UNLOCK (g_thread_create);
390 thread->func (thread->arg);
394 g_thread_create (GThreadFunc thread_func,
399 GThreadPriority priority,
402 GRealThread* result = g_new (GRealThread, 1);
403 GError *local_error = NULL;
404 g_return_val_if_fail (thread_func, NULL);
406 result->thread.joinable = joinable;
407 result->thread.bound = bound;
408 result->thread.priority = priority;
409 result->func = thread_func;
411 result->private_data = NULL;
412 G_LOCK (g_thread_create);
413 G_THREAD_UF (thread_create, (g_thread_create_proxy, result,
414 stack_size, joinable, bound, priority,
415 &result->system_thread, &local_error));
416 G_UNLOCK (g_thread_create);
420 g_propagate_error (error, local_error);
425 return (GThread*) result;
429 g_thread_join (GThread* thread)
431 GRealThread* real = (GRealThread*) thread;
434 g_return_if_fail (thread);
435 g_return_if_fail (thread->joinable);
436 g_return_if_fail (!g_system_thread_equal (real->system_thread, zero_thread));
438 G_THREAD_UF (thread_join, (&real->system_thread));
440 /* Just to make sure, this isn't used any more */
441 thread->joinable = 0;
442 g_system_thread_assign (real->system_thread, zero_thread);
444 /* the thread structure for non-joinable threads is freed upon
445 thread end. We free the memory here. This will leave loose end,
446 if a joinable thread is not joined. */
452 g_thread_set_priority (GThread* thread,
453 GThreadPriority priority)
455 GRealThread* real = (GRealThread*) thread;
457 g_return_if_fail (thread);
458 g_return_if_fail (!g_system_thread_equal (real->system_thread, zero_thread));
460 thread->priority = priority;
461 G_THREAD_CF (thread_set_priority, (void)0, (&real->system_thread, priority));
467 GRealThread* thread = g_private_get (g_thread_specific_private);
471 /* If no thread data is available, provide and set one. This
472 can happen for the main thread and for threads, that are not
474 thread = g_new (GRealThread, 1);
475 thread->thread.joinable = FALSE; /* This is a save guess */
476 thread->thread.bound = TRUE; /* This isn't important at all */
477 thread->thread.priority = G_THREAD_PRIORITY_NORMAL; /* This is
481 thread->private_data = NULL;
483 if (g_thread_supported ())
484 G_THREAD_UF (thread_self, (&thread->system_thread));
486 g_private_set (g_thread_specific_private, thread);
489 return (GThread*)thread;
492 static void inline g_static_rw_lock_wait (GCond** cond, GStaticMutex* mutex)
495 *cond = g_cond_new ();
496 g_cond_wait (*cond, g_static_mutex_get_mutex (mutex));
499 static void inline g_static_rw_lock_signal (GStaticRWLock* lock)
501 if (lock->want_to_write && lock->write_cond)
502 g_cond_signal (lock->write_cond);
503 else if (lock->read_cond)
504 g_cond_signal (lock->read_cond);
507 void g_static_rw_lock_reader_lock (GStaticRWLock* lock)
509 g_return_if_fail (lock);
511 if (!g_threads_got_initialized)
514 g_static_mutex_lock (&lock->mutex);
515 while (lock->write || lock->want_to_write)
516 g_static_rw_lock_wait (&lock->read_cond, &lock->mutex);
517 lock->read_counter++;
518 g_static_mutex_unlock (&lock->mutex);
521 gboolean g_static_rw_lock_reader_trylock (GStaticRWLock* lock)
523 gboolean ret_val = FALSE;
525 g_return_val_if_fail (lock, FALSE);
527 if (!g_threads_got_initialized)
530 g_static_mutex_lock (&lock->mutex);
531 if (!lock->write && !lock->want_to_write)
533 lock->read_counter++;
536 g_static_mutex_unlock (&lock->mutex);
540 void g_static_rw_lock_reader_unlock (GStaticRWLock* lock)
542 g_return_if_fail (lock);
544 if (!g_threads_got_initialized)
547 g_static_mutex_lock (&lock->mutex);
548 lock->read_counter--;
549 g_static_rw_lock_signal (lock);
550 g_static_mutex_unlock (&lock->mutex);
553 void g_static_rw_lock_writer_lock (GStaticRWLock* lock)
555 g_return_if_fail (lock);
557 if (!g_threads_got_initialized)
560 g_static_mutex_lock (&lock->mutex);
561 lock->want_to_write++;
562 while (lock->write || lock->read_counter)
563 g_static_rw_lock_wait (&lock->write_cond, &lock->mutex);
564 lock->want_to_write--;
566 g_static_mutex_unlock (&lock->mutex);
569 gboolean g_static_rw_lock_writer_trylock (GStaticRWLock* lock)
571 gboolean ret_val = FALSE;
573 g_return_val_if_fail (lock, FALSE);
575 if (!g_threads_got_initialized)
578 g_static_mutex_lock (&lock->mutex);
579 if (!lock->write && !lock->read_counter)
584 g_static_mutex_unlock (&lock->mutex);
588 void g_static_rw_lock_writer_unlock (GStaticRWLock* lock)
590 g_return_if_fail (lock);
592 if (!g_threads_got_initialized)
595 g_static_mutex_lock (&lock->mutex);
597 g_static_rw_lock_signal (lock);
598 g_static_mutex_unlock (&lock->mutex);
601 void g_static_rw_lock_free (GStaticRWLock* lock)
603 g_return_if_fail (lock);
606 g_cond_free (lock->read_cond);
607 if (lock->write_cond)
608 g_cond_free (lock->write_cond);