1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * gthread.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/.
38 #include "gthreadprivate.h"
49 #endif /* G_OS_WIN32 */
56 g_thread_error_quark (void)
58 return g_quark_from_static_string ("g_thread_error");
61 /* Keep this in sync with GRealThread in gmain.c! */
62 typedef struct _GRealThread GRealThread;
66 gpointer private_data;
69 GSystemThread system_thread;
72 typedef struct _GStaticPrivateNode GStaticPrivateNode;
73 struct _GStaticPrivateNode
76 GDestroyNotify destroy;
79 static void g_thread_cleanup (gpointer data);
80 static void g_thread_fail (void);
81 static guint64 gettime (void);
83 /* Global variables */
85 static GSystemThread zero_thread; /* This is initialized to all zero */
86 gboolean g_thread_use_default_impl = TRUE;
87 gboolean g_threads_got_initialized = FALSE;
89 GThreadFunctions g_thread_functions_for_glib_use = {
90 (GMutex*(*)())g_thread_fail, /* mutex_new */
91 NULL, /* mutex_lock */
92 NULL, /* mutex_trylock */
93 NULL, /* mutex_unlock */
94 NULL, /* mutex_free */
95 (GCond*(*)())g_thread_fail, /* cond_new */
96 NULL, /* cond_signal */
97 NULL, /* cond_broadcast */
99 NULL, /* cond_timed_wait */
100 NULL, /* cond_free */
101 (GPrivate*(*)(GDestroyNotify))g_thread_fail, /* private_new */
102 NULL, /* private_get */
103 NULL, /* private_set */
104 (void(*)(GThreadFunc, gpointer, gulong,
105 gboolean, gboolean, GThreadPriority,
106 gpointer, GError**))g_thread_fail, /* thread_create */
107 NULL, /* thread_yield */
108 NULL, /* thread_join */
109 NULL, /* thread_exit */
110 NULL, /* thread_set_priority */
111 NULL, /* thread_self */
112 NULL, /* thread_equal */
113 gettime /* gettime */
118 static GMutex *g_once_mutex = NULL;
119 static GCond *g_once_cond = NULL;
120 static GPrivate *g_thread_specific_private = NULL;
121 static GRealThread *g_thread_all_threads = NULL;
122 static GSList *g_thread_free_indeces = NULL;
124 G_LOCK_DEFINE_STATIC (g_thread);
126 #ifdef G_THREADS_ENABLED
127 /* This must be called only once, before any threads are created.
128 * It will only be called from g_thread_init() in -lgthread.
131 g_thread_init_glib (void)
133 /* We let the main thread (the one that calls g_thread_init) inherit
134 * the static_private data set before calling g_thread_init
136 GRealThread* main_thread = (GRealThread*) g_thread_self ();
138 /* mutex and cond creation works without g_threads_got_initialized */
139 g_once_mutex = g_mutex_new ();
140 g_once_cond = g_cond_new ();
142 /* we may only create mutex and cond in here */
143 _g_mem_thread_init_noprivate_nomessage ();
145 /* setup the basic threading system */
146 g_threads_got_initialized = TRUE;
147 g_thread_specific_private = g_private_new (g_thread_cleanup);
148 g_private_set (g_thread_specific_private, main_thread);
149 G_THREAD_UF (thread_self, (&main_thread->system_thread));
151 /* complete memory system initialization, g_private_*() works now */
152 _g_slice_thread_init_nomessage ();
154 /* accomplish log system initialization to enable messaging */
155 _g_messages_thread_init_nomessage ();
157 /* we may run full-fledged initializers from here */
158 _g_atomic_thread_init ();
159 _g_convert_thread_init ();
160 _g_rand_thread_init ();
161 _g_main_thread_init ();
162 _g_utils_thread_init ();
164 _g_win32_thread_init ();
167 #endif /* G_THREADS_ENABLED */
170 g_once_impl (GOnce *once,
174 g_mutex_lock (g_once_mutex);
176 while (once->status == G_ONCE_STATUS_PROGRESS)
177 g_cond_wait (g_once_cond, g_once_mutex);
179 if (once->status != G_ONCE_STATUS_READY)
181 once->status = G_ONCE_STATUS_PROGRESS;
182 g_mutex_unlock (g_once_mutex);
184 once->retval = func (arg);
186 g_mutex_lock (g_once_mutex);
187 once->status = G_ONCE_STATUS_READY;
188 g_cond_broadcast (g_once_cond);
191 g_mutex_unlock (g_once_mutex);
197 g_static_mutex_init (GStaticMutex *mutex)
199 static const GStaticMutex init_mutex = G_STATIC_MUTEX_INIT;
201 g_return_if_fail (mutex);
207 g_static_mutex_get_mutex_impl (GMutex** mutex)
209 if (!g_thread_supported ())
212 g_assert (g_once_mutex);
214 g_mutex_lock (g_once_mutex);
217 g_atomic_pointer_set (mutex, g_mutex_new());
219 g_mutex_unlock (g_once_mutex);
225 g_static_mutex_free (GStaticMutex* mutex)
227 GMutex **runtime_mutex;
229 g_return_if_fail (mutex);
231 /* The runtime_mutex is the first (or only) member of GStaticMutex,
232 * see both versions (of glibconfig.h) in configure.in */
233 runtime_mutex = ((GMutex**)mutex);
236 g_mutex_free (*runtime_mutex);
238 *runtime_mutex = NULL;
242 g_static_rec_mutex_init (GStaticRecMutex *mutex)
244 static const GStaticRecMutex init_mutex = G_STATIC_REC_MUTEX_INIT;
246 g_return_if_fail (mutex);
252 g_static_rec_mutex_lock (GStaticRecMutex* mutex)
256 g_return_if_fail (mutex);
258 if (!g_thread_supported ())
261 G_THREAD_UF (thread_self, (&self));
263 if (g_system_thread_equal (self, mutex->owner))
268 g_static_mutex_lock (&mutex->mutex);
269 g_system_thread_assign (mutex->owner, self);
274 g_static_rec_mutex_trylock (GStaticRecMutex* mutex)
278 g_return_val_if_fail (mutex, FALSE);
280 if (!g_thread_supported ())
283 G_THREAD_UF (thread_self, (&self));
285 if (g_system_thread_equal (self, mutex->owner))
291 if (!g_static_mutex_trylock (&mutex->mutex))
294 g_system_thread_assign (mutex->owner, self);
300 g_static_rec_mutex_unlock (GStaticRecMutex* mutex)
302 g_return_if_fail (mutex);
304 if (!g_thread_supported ())
307 if (mutex->depth > 1)
312 g_system_thread_assign (mutex->owner, zero_thread);
313 g_static_mutex_unlock (&mutex->mutex);
317 g_static_rec_mutex_lock_full (GStaticRecMutex *mutex,
321 g_return_if_fail (mutex);
323 if (!g_thread_supported ())
329 G_THREAD_UF (thread_self, (&self));
331 if (g_system_thread_equal (self, mutex->owner))
333 mutex->depth += depth;
336 g_static_mutex_lock (&mutex->mutex);
337 g_system_thread_assign (mutex->owner, self);
338 mutex->depth = depth;
342 g_static_rec_mutex_unlock_full (GStaticRecMutex *mutex)
346 g_return_val_if_fail (mutex, 0);
348 if (!g_thread_supported ())
351 depth = mutex->depth;
353 g_system_thread_assign (mutex->owner, zero_thread);
355 g_static_mutex_unlock (&mutex->mutex);
361 g_static_rec_mutex_free (GStaticRecMutex *mutex)
363 g_return_if_fail (mutex);
365 g_static_mutex_free (&mutex->mutex);
369 g_static_private_init (GStaticPrivate *private_key)
371 private_key->index = 0;
375 g_static_private_get (GStaticPrivate *private_key)
377 GRealThread *self = (GRealThread*) g_thread_self ();
380 array = self->private_data;
384 if (!private_key->index)
386 else if (private_key->index <= array->len)
387 return g_array_index (array, GStaticPrivateNode,
388 private_key->index - 1).data;
394 g_static_private_set (GStaticPrivate *private_key,
396 GDestroyNotify notify)
398 GRealThread *self = (GRealThread*) g_thread_self ();
400 static guint next_index = 0;
401 GStaticPrivateNode *node;
403 array = self->private_data;
406 array = g_array_new (FALSE, TRUE, sizeof (GStaticPrivateNode));
407 self->private_data = array;
410 if (!private_key->index)
414 if (!private_key->index)
416 if (g_thread_free_indeces)
419 GPOINTER_TO_UINT (g_thread_free_indeces->data);
420 g_thread_free_indeces =
421 g_slist_delete_link (g_thread_free_indeces,
422 g_thread_free_indeces);
425 private_key->index = ++next_index;
431 if (private_key->index > array->len)
432 g_array_set_size (array, private_key->index);
434 node = &g_array_index (array, GStaticPrivateNode, private_key->index - 1);
437 gpointer ddata = node->data;
438 GDestroyNotify ddestroy = node->destroy;
441 node->destroy = notify;
448 node->destroy = notify;
453 g_static_private_free (GStaticPrivate *private_key)
455 guint index = private_key->index;
461 private_key->index = 0;
465 thread = g_thread_all_threads;
468 GArray *array = thread->private_data;
469 thread = thread->next;
471 if (array && index <= array->len)
473 GStaticPrivateNode *node = &g_array_index (array,
476 gpointer ddata = node->data;
477 GDestroyNotify ddestroy = node->destroy;
480 node->destroy = NULL;
490 g_thread_free_indeces = g_slist_prepend (g_thread_free_indeces,
491 GUINT_TO_POINTER (index));
496 g_thread_cleanup (gpointer data)
500 GRealThread* thread = data;
501 if (thread->private_data)
503 GArray* array = thread->private_data;
506 for (i = 0; i < array->len; i++ )
508 GStaticPrivateNode *node =
509 &g_array_index (array, GStaticPrivateNode, i);
511 node->destroy (node->data);
513 g_array_free (array, TRUE);
516 /* We only free the thread structure, if it isn't joinable. If
517 it is, the structure is freed in g_thread_join */
518 if (!thread->thread.joinable)
523 for (t = g_thread_all_threads, p = NULL; t; p = t, t = t->next)
530 g_thread_all_threads = t->next;
536 /* Just to make sure, this isn't used any more */
537 g_system_thread_assign (thread->system_thread, zero_thread);
546 g_error ("The thread system is not yet initialized.");
549 #define G_NSEC_PER_SEC 1000000000
557 GetSystemTimeAsFileTime ((FILETIME *)&v);
564 gettimeofday (&tv, NULL);
566 return (guint64) tv.tv_sec * G_NSEC_PER_SEC + tv.tv_usec * (G_NSEC_PER_SEC / G_USEC_PER_SEC);
571 g_thread_create_proxy (gpointer data)
573 GRealThread* thread = data;
577 /* This has to happen before G_LOCK, as that might call g_thread_self */
578 g_private_set (g_thread_specific_private, data);
580 /* the lock makes sure, that thread->system_thread is written,
581 before thread->thread.func is called. See g_thread_create. */
585 thread->retval = thread->thread.func (thread->thread.data);
591 g_thread_create_full (GThreadFunc func,
596 GThreadPriority priority,
600 GError *local_error = NULL;
601 g_return_val_if_fail (func, NULL);
602 g_return_val_if_fail (priority >= G_THREAD_PRIORITY_LOW, NULL);
603 g_return_val_if_fail (priority <= G_THREAD_PRIORITY_URGENT, NULL);
605 result = g_new0 (GRealThread, 1);
607 result->thread.joinable = joinable;
608 result->thread.priority = priority;
609 result->thread.func = func;
610 result->thread.data = data;
611 result->private_data = NULL;
613 G_THREAD_UF (thread_create, (g_thread_create_proxy, result,
614 stack_size, joinable, bound, priority,
615 &result->system_thread, &local_error));
616 result->next = g_thread_all_threads;
617 g_thread_all_threads = result;
622 g_propagate_error (error, local_error);
627 return (GThread*) result;
631 g_thread_exit (gpointer retval)
633 GRealThread* real = (GRealThread*) g_thread_self ();
634 real->retval = retval;
635 G_THREAD_CF (thread_exit, (void)0, ());
639 g_thread_join (GThread* thread)
641 GRealThread* real = (GRealThread*) thread;
645 g_return_val_if_fail (thread, NULL);
646 g_return_val_if_fail (thread->joinable, NULL);
647 g_return_val_if_fail (!g_system_thread_equal (real->system_thread,
650 G_THREAD_UF (thread_join, (&real->system_thread));
652 retval = real->retval;
655 for (t = g_thread_all_threads, p = NULL; t; p = t, t = t->next)
657 if (t == (GRealThread*) thread)
662 g_thread_all_threads = t->next;
668 /* Just to make sure, this isn't used any more */
669 thread->joinable = 0;
670 g_system_thread_assign (real->system_thread, zero_thread);
672 /* the thread structure for non-joinable threads is freed upon
673 thread end. We free the memory here. This will leave a loose end,
674 if a joinable thread is not joined. */
682 g_thread_set_priority (GThread* thread,
683 GThreadPriority priority)
685 GRealThread* real = (GRealThread*) thread;
687 g_return_if_fail (thread);
688 g_return_if_fail (!g_system_thread_equal (real->system_thread, zero_thread));
689 g_return_if_fail (priority >= G_THREAD_PRIORITY_LOW);
690 g_return_if_fail (priority <= G_THREAD_PRIORITY_URGENT);
692 thread->priority = priority;
694 G_THREAD_CF (thread_set_priority, (void)0,
695 (&real->system_thread, priority));
701 GRealThread* thread = g_private_get (g_thread_specific_private);
705 /* If no thread data is available, provide and set one. This
706 can happen for the main thread and for threads, that are not
708 thread = g_new0 (GRealThread, 1);
709 thread->thread.joinable = FALSE; /* This is a save guess */
710 thread->thread.priority = G_THREAD_PRIORITY_NORMAL; /* This is
712 thread->thread.func = NULL;
713 thread->thread.data = NULL;
714 thread->private_data = NULL;
716 if (g_thread_supported ())
717 G_THREAD_UF (thread_self, (&thread->system_thread));
719 g_private_set (g_thread_specific_private, thread);
722 thread->next = g_thread_all_threads;
723 g_thread_all_threads = thread;
727 return (GThread*)thread;
731 g_static_rw_lock_init (GStaticRWLock* lock)
733 static const GStaticRWLock init_lock = G_STATIC_RW_LOCK_INIT;
735 g_return_if_fail (lock);
741 g_static_rw_lock_wait (GCond** cond, GStaticMutex* mutex)
744 *cond = g_cond_new ();
745 g_cond_wait (*cond, g_static_mutex_get_mutex (mutex));
749 g_static_rw_lock_signal (GStaticRWLock* lock)
751 if (lock->want_to_write && lock->write_cond)
752 g_cond_signal (lock->write_cond);
753 else if (lock->want_to_read && lock->read_cond)
754 g_cond_broadcast (lock->read_cond);
758 g_static_rw_lock_reader_lock (GStaticRWLock* lock)
760 g_return_if_fail (lock);
762 if (!g_threads_got_initialized)
765 g_static_mutex_lock (&lock->mutex);
766 lock->want_to_read++;
767 while (lock->have_writer || lock->want_to_write)
768 g_static_rw_lock_wait (&lock->read_cond, &lock->mutex);
769 lock->want_to_read--;
770 lock->read_counter++;
771 g_static_mutex_unlock (&lock->mutex);
775 g_static_rw_lock_reader_trylock (GStaticRWLock* lock)
777 gboolean ret_val = FALSE;
779 g_return_val_if_fail (lock, FALSE);
781 if (!g_threads_got_initialized)
784 g_static_mutex_lock (&lock->mutex);
785 if (!lock->have_writer && !lock->want_to_write)
787 lock->read_counter++;
790 g_static_mutex_unlock (&lock->mutex);
795 g_static_rw_lock_reader_unlock (GStaticRWLock* lock)
797 g_return_if_fail (lock);
799 if (!g_threads_got_initialized)
802 g_static_mutex_lock (&lock->mutex);
803 lock->read_counter--;
804 if (lock->read_counter == 0)
805 g_static_rw_lock_signal (lock);
806 g_static_mutex_unlock (&lock->mutex);
810 g_static_rw_lock_writer_lock (GStaticRWLock* lock)
812 g_return_if_fail (lock);
814 if (!g_threads_got_initialized)
817 g_static_mutex_lock (&lock->mutex);
818 lock->want_to_write++;
819 while (lock->have_writer || lock->read_counter)
820 g_static_rw_lock_wait (&lock->write_cond, &lock->mutex);
821 lock->want_to_write--;
822 lock->have_writer = TRUE;
823 g_static_mutex_unlock (&lock->mutex);
827 g_static_rw_lock_writer_trylock (GStaticRWLock* lock)
829 gboolean ret_val = FALSE;
831 g_return_val_if_fail (lock, FALSE);
833 if (!g_threads_got_initialized)
836 g_static_mutex_lock (&lock->mutex);
837 if (!lock->have_writer && !lock->read_counter)
839 lock->have_writer = TRUE;
842 g_static_mutex_unlock (&lock->mutex);
847 g_static_rw_lock_writer_unlock (GStaticRWLock* lock)
849 g_return_if_fail (lock);
851 if (!g_threads_got_initialized)
854 g_static_mutex_lock (&lock->mutex);
855 lock->have_writer = FALSE;
856 g_static_rw_lock_signal (lock);
857 g_static_mutex_unlock (&lock->mutex);
861 g_static_rw_lock_free (GStaticRWLock* lock)
863 g_return_if_fail (lock);
867 g_cond_free (lock->read_cond);
868 lock->read_cond = NULL;
870 if (lock->write_cond)
872 g_cond_free (lock->write_cond);
873 lock->write_cond = NULL;
875 g_static_mutex_free (&lock->mutex);
880 * @thread_func: function to call for all GThread structures
881 * @user_data: second argument to @thread_func
883 * Call @thread_func on all existing #GThread structures. Note that
884 * threads may decide to exit while @thread_func is running, so
885 * without intimate knowledge about the lifetime of foreign threads,
886 * @thread_func shouldn't access the GThread* pointer passed in as
887 * first argument. However, @thread_func will not be called for threads
888 * which are known to have exited already.
890 * Due to thread lifetime checks, this function has an execution complexity
891 * which is quadratic in the number of existing threads.
896 g_thread_foreach (GFunc thread_func,
899 GSList *slist = NULL;
901 g_return_if_fail (thread_func != NULL);
902 /* snapshot the list of threads for iteration */
904 for (thread = g_thread_all_threads; thread; thread = thread->next)
905 slist = g_slist_prepend (slist, thread);
907 /* walk the list, skipping non-existant threads */
910 GSList *node = slist;
912 /* check whether the current thread still exists */
914 for (thread = g_thread_all_threads; thread; thread = thread->next)
915 if (thread == node->data)
919 thread_func (thread, user_data);
920 g_slist_free_1 (node);
924 #define __G_THREAD_C__
925 #include "galiasdef.c"