Some further makefile improvement.
[glib.git] / gthread.c
blob034e7716dd0b8d536860ba16f63ed425a47c8a1b
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
6 * Owen Taylor
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/.
31 /*
32 * MT safe
35 #include "config.h"
36 #include "glib.h"
38 #ifdef HAVE_UNISTD_H
39 #include <unistd.h>
40 #endif
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 */
54 GQuark
55 g_thread_error_quark()
57 static GQuark quark;
58 if (!quark)
59 quark = g_quark_from_static_string ("g_thread_error");
60 return quark;
63 typedef struct _GRealThread GRealThread;
64 struct _GRealThread
66 GThread thread;
67 GThreadFunc func;
68 gpointer arg;
69 gpointer private_data;
70 GSystemThread system_thread;
73 typedef struct _GStaticPrivateNode GStaticPrivateNode;
74 struct _GStaticPrivateNode
76 gpointer data;
77 GDestroyNotify destroy;
80 static void g_thread_cleanup (gpointer data);
81 static void g_thread_fail (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 #if defined(G_OS_WIN32) && defined(__GNUC__)
90 __declspec(dllexport)
91 #endif
92 GThreadFunctions g_thread_functions_for_glib_use = {
93 (GMutex*(*)())g_thread_fail, /* mutex_new */
94 NULL, /* mutex_lock */
95 NULL, /* mutex_trylock */
96 NULL, /* mutex_unlock */
97 NULL, /* mutex_free */
98 (GCond*(*)())g_thread_fail, /* cond_new */
99 NULL, /* cond_signal */
100 NULL, /* cond_broadcast */
101 NULL, /* cond_wait */
102 NULL, /* cond_timed_wait */
103 NULL, /* cond_free */
104 (GPrivate*(*)(GDestroyNotify))g_thread_fail, /* private_new */
105 NULL, /* private_get */
106 NULL, /* private_set */
107 (void(*)(GThreadFunc, gpointer, gulong,
108 gboolean, gboolean, GThreadPriority,
109 gpointer, GError**))g_thread_fail, /* thread_create */
110 NULL, /* thread_yield */
111 NULL, /* thread_join */
112 NULL, /* thread_exit */
113 NULL, /* thread_set_priority */
114 NULL /* thread_self */
117 /* Local data */
119 static GMutex *g_mutex_protect_static_mutex_allocation = NULL;
120 static GMutex *g_thread_specific_mutex = NULL;
121 static GPrivate *g_thread_specific_private = NULL;
123 /* This must be called only once, before any threads are created.
124 * It will only be called from g_thread_init() in -lgthread.
126 void
127 g_mutex_init (void)
129 GRealThread* main_thread;
131 /* We let the main thread (the one that calls g_thread_init) inherit
132 * the data, that it set before calling g_thread_init
134 main_thread = (GRealThread*) g_thread_self ();
136 g_thread_specific_private = g_private_new (g_thread_cleanup);
137 G_THREAD_UF (private_set, (g_thread_specific_private, main_thread));
138 G_THREAD_UF (thread_self, (&main_thread->system_thread));
140 g_mutex_protect_static_mutex_allocation = g_mutex_new();
141 g_thread_specific_mutex = g_mutex_new();
144 GMutex *
145 g_static_mutex_get_mutex_impl (GMutex** mutex)
147 if (!g_thread_supported ())
148 return NULL;
150 g_assert (g_mutex_protect_static_mutex_allocation);
152 g_mutex_lock (g_mutex_protect_static_mutex_allocation);
154 if (!(*mutex))
155 *mutex = g_mutex_new();
157 g_mutex_unlock (g_mutex_protect_static_mutex_allocation);
159 return *mutex;
162 void
163 g_static_rec_mutex_lock (GStaticRecMutex* mutex)
165 GSystemThread self;
167 g_return_if_fail (mutex);
169 G_THREAD_UF (thread_self, (&self));
171 if (g_system_thread_equal (self, mutex->owner))
173 mutex->depth++;
174 return;
176 g_static_mutex_lock (&mutex->mutex);
177 g_system_thread_assign (mutex->owner, self);
178 mutex->depth = 1;
181 gboolean
182 g_static_rec_mutex_trylock (GStaticRecMutex* mutex)
184 GSystemThread self;
186 g_return_val_if_fail (mutex, FALSE);
188 G_THREAD_UF (thread_self, (&self));
190 if (g_system_thread_equal (self, mutex->owner))
192 mutex->depth++;
193 return TRUE;
196 if (!g_static_mutex_trylock (&mutex->mutex))
197 return FALSE;
199 g_system_thread_assign (mutex->owner, self);
200 mutex->depth = 1;
201 return TRUE;
204 void
205 g_static_rec_mutex_unlock (GStaticRecMutex* mutex)
207 g_return_if_fail (mutex);
209 if (mutex->depth > 1)
211 mutex->depth--;
212 return;
214 g_system_thread_assign (mutex->owner, zero_thread);
215 g_static_mutex_unlock (&mutex->mutex);
218 void
219 g_static_rec_mutex_lock_full (GStaticRecMutex *mutex,
220 guint depth)
222 g_return_if_fail (mutex);
224 g_static_mutex_lock (&mutex->mutex);
225 G_THREAD_UF (thread_self, (&mutex->owner));
226 mutex->depth = depth;
229 guint
230 g_static_rec_mutex_unlock_full (GStaticRecMutex *mutex)
232 gint depth = mutex->depth;
234 g_return_val_if_fail (mutex, 0);
236 g_system_thread_assign (mutex->owner, zero_thread);
237 mutex->depth = 0;
238 g_static_mutex_unlock (&mutex->mutex);
240 return depth;
244 gpointer
245 g_static_private_get (GStaticPrivate *private_key)
247 return g_static_private_get_for_thread (private_key, g_thread_self ());
250 gpointer
251 g_static_private_get_for_thread (GStaticPrivate *private_key,
252 GThread *thread)
254 GArray *array;
255 GRealThread *self = (GRealThread*) thread;
257 g_return_val_if_fail (thread, NULL);
259 array = self->private_data;
260 if (!array)
261 return NULL;
263 if (!private_key->index)
264 return NULL;
265 else if (private_key->index <= array->len)
266 return g_array_index (array, GStaticPrivateNode, private_key->index - 1).data;
267 else
268 return NULL;
271 void
272 g_static_private_set (GStaticPrivate *private_key,
273 gpointer data,
274 GDestroyNotify notify)
276 g_static_private_set_for_thread (private_key, g_thread_self (),
277 data, notify);
280 void
281 g_static_private_set_for_thread (GStaticPrivate *private_key,
282 GThread *thread,
283 gpointer data,
284 GDestroyNotify notify)
286 GArray *array;
287 GRealThread *self =(GRealThread*) thread;
288 static guint next_index = 0;
289 GStaticPrivateNode *node;
291 g_return_if_fail (thread);
293 array = self->private_data;
294 if (!array)
296 array = g_array_new (FALSE, TRUE, sizeof (GStaticPrivateNode));
297 self->private_data = array;
300 if (!private_key->index)
302 g_mutex_lock (g_thread_specific_mutex);
304 if (!private_key->index)
305 private_key->index = ++next_index;
307 g_mutex_unlock (g_thread_specific_mutex);
310 if (private_key->index > array->len)
311 g_array_set_size (array, private_key->index);
313 node = &g_array_index (array, GStaticPrivateNode, private_key->index - 1);
314 if (node->destroy)
316 gpointer ddata = node->data;
317 GDestroyNotify ddestroy = node->destroy;
319 node->data = data;
320 node->destroy = notify;
322 ddestroy (ddata);
324 else
326 node->data = data;
327 node->destroy = notify;
331 static void
332 g_thread_cleanup (gpointer data)
334 if (data)
336 GRealThread* thread = data;
337 if (thread->private_data)
339 GArray* array = thread->private_data;
340 guint i;
342 for (i = 0; i < array->len; i++ )
344 GStaticPrivateNode *node =
345 &g_array_index (array, GStaticPrivateNode, i);
346 if (node->destroy)
347 node->destroy (node->data);
349 g_array_free (array, TRUE);
351 /* We only free the thread structure, if it isn't joinable. If
352 it is, the structure is freed in g_thread_join */
353 if (!thread->thread.joinable)
355 /* Just to make sure, this isn't used any more */
356 g_system_thread_assign (thread->system_thread, zero_thread);
357 g_free (thread);
362 static void
363 g_thread_fail (void)
365 g_error ("The thread system is not yet initialized.");
368 G_LOCK_DEFINE_STATIC (g_thread_create);
370 static void
371 g_thread_create_proxy (gpointer data)
373 GRealThread* thread = data;
375 g_assert (data);
377 /* the lock makes sure, that thread->system_thread is written,
378 before thread->func is called. See g_thread_create */
380 G_LOCK (g_thread_create);
381 g_private_set (g_thread_specific_private, data);
382 G_UNLOCK (g_thread_create);
384 thread->func (thread->arg);
387 GThread*
388 g_thread_create (GThreadFunc thread_func,
389 gpointer arg,
390 gulong stack_size,
391 gboolean joinable,
392 gboolean bound,
393 GThreadPriority priority,
394 GError **error)
396 GRealThread* result = g_new (GRealThread, 1);
397 GError *local_error = NULL;
398 g_return_val_if_fail (thread_func, NULL);
400 result->thread.joinable = joinable;
401 result->thread.bound = bound;
402 result->thread.priority = priority;
403 result->func = thread_func;
404 result->arg = arg;
405 result->private_data = NULL;
406 G_LOCK (g_thread_create);
407 G_THREAD_UF (thread_create, (g_thread_create_proxy, result,
408 stack_size, joinable, bound, priority,
409 &result->system_thread, &local_error));
410 G_UNLOCK (g_thread_create);
412 if (local_error)
414 g_propagate_error (error, local_error);
415 g_free (result);
416 return NULL;
419 return (GThread*) result;
422 void
423 g_thread_join (GThread* thread)
425 GRealThread* real = (GRealThread*) thread;
428 g_return_if_fail (thread);
429 g_return_if_fail (thread->joinable);
430 g_return_if_fail (!g_system_thread_equal (real->system_thread, zero_thread));
432 G_THREAD_UF (thread_join, (&real->system_thread));
434 /* Just to make sure, this isn't used any more */
435 thread->joinable = 0;
436 g_system_thread_assign (real->system_thread, zero_thread);
438 /* the thread structure for non-joinable threads is freed upon
439 thread end. We free the memory here. This will leave loose end,
440 if a joinable thread is not joined. */
442 g_free (thread);
445 void
446 g_thread_set_priority (GThread* thread,
447 GThreadPriority priority)
449 GRealThread* real = (GRealThread*) thread;
451 g_return_if_fail (thread);
452 g_return_if_fail (!g_system_thread_equal (real->system_thread, zero_thread));
454 thread->priority = priority;
455 G_THREAD_CF (thread_set_priority, (void)0, (&real->system_thread, priority));
458 GThread*
459 g_thread_self()
461 GRealThread* thread = g_private_get (g_thread_specific_private);
463 if (!thread)
465 /* If no thread data is available, provide and set one. This
466 can happen for the main thread and for threads, that are not
467 created by GLib. */
468 thread = g_new (GRealThread, 1);
469 thread->thread.joinable = FALSE; /* This is a save guess */
470 thread->thread.bound = TRUE; /* This isn't important at all */
471 thread->thread.priority = G_THREAD_PRIORITY_NORMAL; /* This is
472 just a guess */
473 thread->func = NULL;
474 thread->arg = NULL;
475 thread->private_data = NULL;
477 if (g_thread_supported ())
478 G_THREAD_UF (thread_self, (&thread->system_thread));
480 g_private_set (g_thread_specific_private, thread);
483 return (GThread*)thread;
486 static void inline g_static_rw_lock_wait (GCond** cond, GStaticMutex* mutex)
488 if (!*cond)
489 *cond = g_cond_new ();
490 g_cond_wait (*cond, g_static_mutex_get_mutex (mutex));
493 static void inline g_static_rw_lock_signal (GStaticRWLock* lock)
495 if (lock->want_to_write && lock->write_cond)
496 g_cond_signal (lock->write_cond);
497 else if (lock->read_cond)
498 g_cond_signal (lock->read_cond);
501 void g_static_rw_lock_reader_lock (GStaticRWLock* lock)
503 g_return_if_fail (lock);
505 if (!g_threads_got_initialized)
506 return;
508 g_static_mutex_lock (&lock->mutex);
509 while (lock->write || lock->want_to_write)
510 g_static_rw_lock_wait (&lock->read_cond, &lock->mutex);
511 lock->read_counter++;
512 g_static_mutex_unlock (&lock->mutex);
515 gboolean g_static_rw_lock_reader_trylock (GStaticRWLock* lock)
517 gboolean ret_val = FALSE;
519 g_return_val_if_fail (lock, FALSE);
521 if (!g_threads_got_initialized)
522 return TRUE;
524 g_static_mutex_lock (&lock->mutex);
525 if (!lock->write && !lock->want_to_write)
527 lock->read_counter++;
528 ret_val = TRUE;
530 g_static_mutex_unlock (&lock->mutex);
531 return ret_val;
534 void g_static_rw_lock_reader_unlock (GStaticRWLock* lock)
536 g_return_if_fail (lock);
538 if (!g_threads_got_initialized)
539 return;
541 g_static_mutex_lock (&lock->mutex);
542 lock->read_counter--;
543 g_static_rw_lock_signal (lock);
544 g_static_mutex_unlock (&lock->mutex);
547 void g_static_rw_lock_writer_lock (GStaticRWLock* lock)
549 g_return_if_fail (lock);
551 if (!g_threads_got_initialized)
552 return;
554 g_static_mutex_lock (&lock->mutex);
555 lock->want_to_write++;
556 while (lock->write || lock->read_counter)
557 g_static_rw_lock_wait (&lock->write_cond, &lock->mutex);
558 lock->want_to_write--;
559 lock->write = TRUE;
560 g_static_mutex_unlock (&lock->mutex);
563 gboolean g_static_rw_lock_writer_trylock (GStaticRWLock* lock)
565 gboolean ret_val = FALSE;
567 g_return_val_if_fail (lock, FALSE);
569 if (!g_threads_got_initialized)
570 return TRUE;
572 g_static_mutex_lock (&lock->mutex);
573 if (!lock->write && !lock->read_counter)
575 lock->write = TRUE;
576 ret_val = TRUE;
578 g_static_mutex_unlock (&lock->mutex);
579 return ret_val;
582 void g_static_rw_lock_writer_unlock (GStaticRWLock* lock)
584 g_return_if_fail (lock);
586 if (!g_threads_got_initialized)
587 return;
589 g_static_mutex_lock (&lock->mutex);
590 lock->write = FALSE;
591 g_static_rw_lock_signal (lock);
592 g_static_mutex_unlock (&lock->mutex);
595 void g_static_rw_lock_free (GStaticRWLock* lock)
597 g_return_if_fail (lock);
599 if (lock->read_cond)
600 g_cond_free (lock->read_cond);
601 if (lock->write_cond)
602 g_cond_free (lock->write_cond);