Add a surrogate for thread priorities using PID niceness for systems with
[platform/upstream/glib.git] / gthread.c
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * gmutex.c: MT safety related functions
5  * Copyright 1998 Sebastian Wilhelmi; University of Karlsruhe
6  *                Owen Taylor
7  *
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.
12  *
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.
17  *
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.
22  */
23
24 /*
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/. 
29  */
30
31 /* 
32  * MT safe
33  */
34
35 #include "config.h"
36 #include "glib.h"
37
38 #ifdef HAVE_UNISTD_H
39 #include <unistd.h>
40 #endif
41
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 */
53
54 GQuark 
55 g_thread_error_quark()
56 {
57   static GQuark quark;
58   if (!quark)
59     quark = g_quark_from_static_string ("g_thread_error");
60   return quark;
61 }
62
63 typedef struct _GRealThread GRealThread;
64 struct  _GRealThread
65 {
66   GThread thread;
67   GThreadFunc func;
68   gpointer arg;
69   gpointer private_data;
70   GSystemThread system_thread;
71 };
72
73 typedef struct _GStaticPrivateNode GStaticPrivateNode;
74 struct _GStaticPrivateNode
75 {
76   gpointer       data;
77   GDestroyNotify destroy;
78 };
79
80 static void g_thread_cleanup (gpointer data);
81 static void g_thread_fail (void);
82
83 /* Global variables */
84
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;
88
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 */
115 }; 
116
117 /* Local data */
118
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;
122
123 /* This must be called only once, before any threads are created.
124  * It will only be called from g_thread_init() in -lgthread.
125  */
126 void
127 g_mutex_init (void)
128 {
129   GRealThread* main_thread;
130  
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
133    */
134   main_thread = (GRealThread*) g_thread_self ();
135
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));
139
140   g_mutex_protect_static_mutex_allocation = g_mutex_new();
141   g_thread_specific_mutex = g_mutex_new();
142 }
143
144 GMutex *
145 g_static_mutex_get_mutex_impl (GMutex** mutex)
146 {
147   if (!g_thread_supported ())
148     return NULL;
149
150   g_assert (g_mutex_protect_static_mutex_allocation);
151
152   g_mutex_lock (g_mutex_protect_static_mutex_allocation);
153
154   if (!(*mutex)) 
155     *mutex = g_mutex_new(); 
156
157   g_mutex_unlock (g_mutex_protect_static_mutex_allocation);
158   
159   return *mutex;
160 }
161
162 void
163 g_static_rec_mutex_lock (GStaticRecMutex* mutex)
164 {
165   GSystemThread self;
166
167   g_return_if_fail (mutex);
168
169   if (!g_thread_supported ())
170     return;
171
172   G_THREAD_UF (thread_self, (&self));
173
174   if (g_system_thread_equal (self, mutex->owner))
175     {
176       mutex->depth++;
177       return;
178     }
179   g_static_mutex_lock (&mutex->mutex);
180   g_system_thread_assign (mutex->owner, self);
181   mutex->depth = 1;
182 }
183
184 gboolean
185 g_static_rec_mutex_trylock (GStaticRecMutex* mutex)
186 {
187   GSystemThread self;
188
189   g_return_val_if_fail (mutex, FALSE);
190
191   if (!g_thread_supported ())
192     return TRUE;
193
194   G_THREAD_UF (thread_self, (&self));
195
196   if (g_system_thread_equal (self, mutex->owner))
197     {
198       mutex->depth++;
199       return TRUE;
200     }
201
202   if (!g_static_mutex_trylock (&mutex->mutex))
203     return FALSE;
204
205   g_system_thread_assign (mutex->owner, self);
206   mutex->depth = 1;
207   return TRUE;
208 }
209
210 void
211 g_static_rec_mutex_unlock (GStaticRecMutex* mutex)
212 {
213   g_return_if_fail (mutex);
214
215   if (!g_thread_supported ())
216     return;
217
218   if (mutex->depth > 1)
219     {
220       mutex->depth--;
221       return;
222     }
223   g_system_thread_assign (mutex->owner, zero_thread);
224   g_static_mutex_unlock (&mutex->mutex);  
225 }
226
227 void
228 g_static_rec_mutex_lock_full   (GStaticRecMutex *mutex,
229                                 guint            depth)
230 {
231   g_return_if_fail (mutex);
232
233   if (!g_thread_supported ())
234     return;
235
236   g_static_mutex_lock (&mutex->mutex);
237   G_THREAD_UF (thread_self, (&mutex->owner));
238   mutex->depth = depth;
239 }
240
241 guint    
242 g_static_rec_mutex_unlock_full (GStaticRecMutex *mutex)
243 {
244   gint depth;
245
246   g_return_val_if_fail (mutex, 0);
247
248   if (!g_thread_supported ())
249     return 1;
250
251   depth = mutex->depth;
252
253   g_system_thread_assign (mutex->owner, zero_thread);
254   mutex->depth = 0;
255   g_static_mutex_unlock (&mutex->mutex);
256
257   return depth;
258 }
259
260
261 gpointer
262 g_static_private_get (GStaticPrivate *private_key)
263 {
264   return g_static_private_get_for_thread (private_key, g_thread_self ());
265 }
266
267 gpointer
268 g_static_private_get_for_thread (GStaticPrivate *private_key,
269                                  GThread        *thread)
270 {
271   GArray *array;
272   GRealThread *self = (GRealThread*) thread;
273
274   g_return_val_if_fail (thread, NULL);
275
276   array = self->private_data;
277   if (!array)
278     return NULL;
279
280   if (!private_key->index)
281     return NULL;
282   else if (private_key->index <= array->len)
283     return g_array_index (array, GStaticPrivateNode, private_key->index - 1).data;
284   else
285     return NULL;
286 }
287
288 void
289 g_static_private_set (GStaticPrivate *private_key, 
290                       gpointer        data,
291                       GDestroyNotify  notify)
292 {
293   g_static_private_set_for_thread (private_key, g_thread_self (), 
294                                    data, notify);
295 }
296
297 void
298 g_static_private_set_for_thread (GStaticPrivate *private_key, 
299                                  GThread        *thread,
300                                  gpointer        data,
301                                  GDestroyNotify  notify)
302 {
303   GArray *array;
304   GRealThread *self =(GRealThread*) thread;
305   static guint next_index = 0;
306   GStaticPrivateNode *node;
307
308   g_return_if_fail (thread);
309   
310   array = self->private_data;
311   if (!array)
312     {
313       array = g_array_new (FALSE, TRUE, sizeof (GStaticPrivateNode));
314       self->private_data = array;
315     }
316
317   if (!private_key->index)
318     {
319       g_mutex_lock (g_thread_specific_mutex);
320
321       if (!private_key->index)
322         private_key->index = ++next_index;
323
324       g_mutex_unlock (g_thread_specific_mutex);
325     }
326
327   if (private_key->index > array->len)
328     g_array_set_size (array, private_key->index);
329
330   node = &g_array_index (array, GStaticPrivateNode, private_key->index - 1);
331   if (node->destroy)
332     {
333       gpointer ddata = node->data;
334       GDestroyNotify ddestroy = node->destroy;
335
336       node->data = data;
337       node->destroy = notify;
338
339       ddestroy (ddata);
340     }
341   else
342     {
343       node->data = data;
344       node->destroy = notify;
345     }
346 }
347
348 static void
349 g_thread_cleanup (gpointer data)
350 {
351   if (data)
352     {
353       GRealThread* thread = data;
354       if (thread->private_data)
355         {
356           GArray* array = thread->private_data;
357           guint i;
358           
359           for (i = 0; i < array->len; i++ )
360             {
361               GStaticPrivateNode *node = 
362                 &g_array_index (array, GStaticPrivateNode, i);
363               if (node->destroy)
364                 node->destroy (node->data);
365             }
366           g_array_free (array, TRUE);
367         }
368       /* We only free the thread structure, if it isn't joinable. If
369          it is, the structure is freed in g_thread_join */
370       if (!thread->thread.joinable)
371         {
372           /* Just to make sure, this isn't used any more */
373           g_system_thread_assign (thread->system_thread, zero_thread);
374           g_free (thread);
375         }
376     }
377 }
378
379 static void
380 g_thread_fail (void)
381 {
382   g_error ("The thread system is not yet initialized.");
383 }
384
385 G_LOCK_DEFINE_STATIC (g_thread_create);
386
387 static void 
388 g_thread_create_proxy (gpointer data)
389 {
390   GRealThread* thread = data;
391
392   g_assert (data);
393
394   /* the lock makes sure, that thread->system_thread is written,
395      before thread->func is called. See g_thread_create */
396
397   G_LOCK (g_thread_create);
398   g_private_set (g_thread_specific_private, data);
399   G_UNLOCK (g_thread_create);
400
401   thread->func (thread->arg);
402 }
403
404 GThread* 
405 g_thread_create (GThreadFunc             thread_func,
406                  gpointer                arg,
407                  gulong                  stack_size,
408                  gboolean                joinable,
409                  gboolean                bound,
410                  GThreadPriority         priority,
411                  GError                **error)
412 {
413   GRealThread* result = g_new (GRealThread, 1);
414   GError *local_error = NULL;
415   g_return_val_if_fail (thread_func, NULL);
416   g_return_val_if_fail (priority >= G_THREAD_PRIORITY_LOW, NULL);
417   g_return_val_if_fail (priority <= G_THREAD_PRIORITY_URGENT, NULL);
418   
419   result->thread.joinable = joinable;
420   result->thread.bound = bound;
421   result->thread.priority = priority;
422   result->func = thread_func;
423   result->arg = arg;
424   result->private_data = NULL; 
425   G_LOCK (g_thread_create);
426   G_THREAD_UF (thread_create, (g_thread_create_proxy, result, 
427                                stack_size, joinable, bound, priority,
428                                &result->system_thread, &local_error));
429   G_UNLOCK (g_thread_create);
430
431   if (local_error)
432     {
433       g_propagate_error (error, local_error);
434       g_free (result);
435       return NULL;
436     }
437
438   return (GThread*) result;
439 }
440
441 void 
442 g_thread_join (GThread* thread)
443 {
444   GRealThread* real = (GRealThread*) thread;
445   
446
447   g_return_if_fail (thread);
448   g_return_if_fail (thread->joinable);
449   g_return_if_fail (!g_system_thread_equal (real->system_thread, zero_thread));
450
451   G_THREAD_UF (thread_join, (&real->system_thread));
452
453   /* Just to make sure, this isn't used any more */
454   thread->joinable = 0;
455   g_system_thread_assign (real->system_thread, zero_thread);
456
457   /* the thread structure for non-joinable threads is freed upon
458      thread end. We free the memory here. This will leave loose end,
459      if a joinable thread is not joined. */
460
461   g_free (thread);
462 }
463
464 void
465 g_thread_set_priority (GThread* thread, 
466                        GThreadPriority priority)
467 {
468   GRealThread* real = (GRealThread*) thread;
469
470   g_return_if_fail (thread);
471   g_return_if_fail (!g_system_thread_equal (real->system_thread, zero_thread));
472   g_return_if_fail (priority >= G_THREAD_PRIORITY_LOW);
473   g_return_if_fail (priority <= G_THREAD_PRIORITY_URGENT);
474
475   thread->priority = priority;
476   G_THREAD_CF (thread_set_priority, (void)0, (&real->system_thread, priority));
477 }
478
479 GThread*
480 g_thread_self()
481 {
482   GRealThread* thread = g_private_get (g_thread_specific_private);
483
484   if (!thread)
485     {  
486       /* If no thread data is available, provide and set one.  This
487          can happen for the main thread and for threads, that are not
488          created by GLib. */
489       thread = g_new (GRealThread, 1);
490       thread->thread.joinable = FALSE; /* This is a save guess */
491       thread->thread.bound = TRUE; /* This isn't important at all */
492       thread->thread.priority = G_THREAD_PRIORITY_NORMAL; /* This is
493                                                              just a guess */
494       thread->func = NULL;
495       thread->arg = NULL;
496       thread->private_data = NULL;
497
498       if (g_thread_supported ())
499         G_THREAD_UF (thread_self, (&thread->system_thread));
500
501       g_private_set (g_thread_specific_private, thread);
502     }
503   
504   return (GThread*)thread;
505 }
506
507 static void inline g_static_rw_lock_wait (GCond** cond, GStaticMutex* mutex)
508 {
509   if (!*cond)
510       *cond = g_cond_new ();
511   g_cond_wait (*cond, g_static_mutex_get_mutex (mutex));
512 }
513
514 static void inline g_static_rw_lock_signal (GStaticRWLock* lock)
515 {
516   if (lock->want_to_write && lock->write_cond)
517     g_cond_signal (lock->write_cond);
518   else if (lock->read_cond)
519     g_cond_signal (lock->read_cond);
520 }
521
522 void g_static_rw_lock_reader_lock (GStaticRWLock* lock)
523 {
524   g_return_if_fail (lock);
525
526   if (!g_threads_got_initialized)
527     return;
528
529   g_static_mutex_lock (&lock->mutex);
530   while (lock->write || lock->want_to_write) 
531     g_static_rw_lock_wait (&lock->read_cond, &lock->mutex);
532   lock->read_counter++;
533   g_static_mutex_unlock (&lock->mutex);
534 }
535
536 gboolean g_static_rw_lock_reader_trylock (GStaticRWLock* lock)
537 {
538   gboolean ret_val = FALSE;
539
540   g_return_val_if_fail (lock, FALSE);
541
542   if (!g_threads_got_initialized)
543     return TRUE;
544
545   g_static_mutex_lock (&lock->mutex);
546   if (!lock->write && !lock->want_to_write)
547     {
548       lock->read_counter++;
549       ret_val = TRUE;
550     }
551   g_static_mutex_unlock (&lock->mutex);
552   return ret_val;
553 }
554
555 void g_static_rw_lock_reader_unlock  (GStaticRWLock* lock)
556 {
557   g_return_if_fail (lock);
558
559   if (!g_threads_got_initialized)
560     return;
561
562   g_static_mutex_lock (&lock->mutex);
563   lock->read_counter--;
564   g_static_rw_lock_signal (lock);
565   g_static_mutex_unlock (&lock->mutex);
566 }
567
568 void g_static_rw_lock_writer_lock (GStaticRWLock* lock)
569 {
570   g_return_if_fail (lock);
571
572   if (!g_threads_got_initialized)
573     return;
574
575   g_static_mutex_lock (&lock->mutex);
576   lock->want_to_write++;
577   while (lock->write || lock->read_counter)
578     g_static_rw_lock_wait (&lock->write_cond, &lock->mutex);
579   lock->want_to_write--;
580   lock->write = TRUE;
581   g_static_mutex_unlock (&lock->mutex);
582 }
583
584 gboolean g_static_rw_lock_writer_trylock (GStaticRWLock* lock)
585 {
586   gboolean ret_val = FALSE;
587
588   g_return_val_if_fail (lock, FALSE);
589   
590   if (!g_threads_got_initialized)
591     return TRUE;
592
593   g_static_mutex_lock (&lock->mutex);
594   if (!lock->write && !lock->read_counter)
595     {
596       lock->write = TRUE;
597       ret_val = TRUE;
598     }
599   g_static_mutex_unlock (&lock->mutex);
600   return ret_val;
601 }
602
603 void g_static_rw_lock_writer_unlock (GStaticRWLock* lock)
604 {
605   g_return_if_fail (lock);
606   
607   if (!g_threads_got_initialized)
608     return;
609
610   g_static_mutex_lock (&lock->mutex);
611   lock->write = FALSE; 
612   g_static_rw_lock_signal (lock);
613   g_static_mutex_unlock (&lock->mutex);
614 }
615
616 void g_static_rw_lock_free (GStaticRWLock* lock)
617 {
618   g_return_if_fail (lock);
619   
620   if (lock->read_cond)
621     g_cond_free (lock->read_cond);
622   if (lock->write_cond)
623     g_cond_free (lock->write_cond);
624   
625 }
626