Bug 556186 – gpoll.h breaks gmain.h inclusion
[platform/upstream/glib.git] / glib / gthread.h
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GLib Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GLib at ftp://ftp.gtk.org/pub/gtk/.
25  */
26
27 #if defined(G_DISABLE_SINGLE_INCLUDES) && !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
28 #error "Only <glib.h> can be included directly."
29 #endif
30
31 #ifndef __G_THREAD_H__
32 #define __G_THREAD_H__
33
34 #include <glib/gerror.h>
35 #include <glib/gtypes.h>
36 #include <glib/gutils.h>        /* for G_INLINE_FUNC */
37 #include <glib/gatomic.h>       /* for g_atomic_pointer_get */
38
39 G_BEGIN_DECLS
40
41 /* GLib Thread support
42  */
43
44 extern GQuark g_thread_error_quark (void);
45 #define G_THREAD_ERROR g_thread_error_quark ()
46
47 typedef enum
48 {
49   G_THREAD_ERROR_AGAIN /* Resource temporarily unavailable */
50 } GThreadError;
51
52 typedef gpointer (*GThreadFunc) (gpointer data);
53
54 typedef enum
55 {
56   G_THREAD_PRIORITY_LOW,
57   G_THREAD_PRIORITY_NORMAL,
58   G_THREAD_PRIORITY_HIGH,
59   G_THREAD_PRIORITY_URGENT
60 } GThreadPriority;
61
62 typedef struct _GThread         GThread;
63 struct  _GThread
64 {
65   /*< private >*/
66   GThreadFunc func;
67   gpointer data;
68   gboolean joinable;
69   GThreadPriority priority;
70 };
71
72 typedef struct _GMutex          GMutex;
73 typedef struct _GCond           GCond;
74 typedef struct _GPrivate        GPrivate;
75 typedef struct _GStaticPrivate  GStaticPrivate;
76
77 typedef struct _GThreadFunctions GThreadFunctions;
78 struct _GThreadFunctions
79 {
80   GMutex*  (*mutex_new)           (void);
81   void     (*mutex_lock)          (GMutex               *mutex);
82   gboolean (*mutex_trylock)       (GMutex               *mutex);
83   void     (*mutex_unlock)        (GMutex               *mutex);
84   void     (*mutex_free)          (GMutex               *mutex);
85   GCond*   (*cond_new)            (void);
86   void     (*cond_signal)         (GCond                *cond);
87   void     (*cond_broadcast)      (GCond                *cond);
88   void     (*cond_wait)           (GCond                *cond,
89                                    GMutex               *mutex);
90   gboolean (*cond_timed_wait)     (GCond                *cond,
91                                    GMutex               *mutex,
92                                    GTimeVal             *end_time);
93   void      (*cond_free)          (GCond                *cond);
94   GPrivate* (*private_new)        (GDestroyNotify        destructor);
95   gpointer  (*private_get)        (GPrivate             *private_key);
96   void      (*private_set)        (GPrivate             *private_key,
97                                    gpointer              data);
98   void      (*thread_create)      (GThreadFunc           func,
99                                    gpointer              data,
100                                    gulong                stack_size,
101                                    gboolean              joinable,
102                                    gboolean              bound,
103                                    GThreadPriority       priority,
104                                    gpointer              thread,
105                                    GError              **error);
106   void      (*thread_yield)       (void);
107   void      (*thread_join)        (gpointer              thread);
108   void      (*thread_exit)        (void);
109   void      (*thread_set_priority)(gpointer              thread,
110                                    GThreadPriority       priority);
111   void      (*thread_self)        (gpointer              thread);
112   gboolean  (*thread_equal)       (gpointer              thread1,
113                                    gpointer              thread2);
114 };
115
116 GLIB_VAR GThreadFunctions       g_thread_functions_for_glib_use;
117 GLIB_VAR gboolean               g_thread_use_default_impl;
118 GLIB_VAR gboolean               g_threads_got_initialized;
119
120 GLIB_VAR guint64   (*g_thread_gettime) (void);
121
122 /* initializes the mutex/cond/private implementation for glib, might
123  * only be called once, and must not be called directly or indirectly
124  * from another glib-function, e.g. as a callback.
125  */
126 void    g_thread_init   (GThreadFunctions       *vtable);
127
128 /* Errorcheck mutexes. If you define G_ERRORCHECK_MUTEXES, then all
129  * mutexes will check for re-locking and re-unlocking */
130
131 /* Initialize thread system with errorcheck mutexes. vtable must be
132  * NULL. Do not call directly. Use #define G_ERRORCHECK_MUTEXES
133  * instead.
134  */
135 void    g_thread_init_with_errorcheck_mutexes (GThreadFunctions* vtable);
136
137 /* A random number to recognize debug calls to g_mutex_... */
138 #define G_MUTEX_DEBUG_MAGIC 0xf8e18ad7
139
140 #ifdef G_ERRORCHECK_MUTEXES
141 #define g_thread_init(vtable) g_thread_init_with_errorcheck_mutexes (vtable)
142 #endif
143
144 /* internal function for fallback static mutex implementation */
145 GMutex* g_static_mutex_get_mutex_impl   (GMutex **mutex);
146
147 #define g_static_mutex_get_mutex_impl_shortcut(mutex) \
148   (g_atomic_pointer_get ((gpointer*)(void*)mutex) ? *(mutex) : \
149    g_static_mutex_get_mutex_impl (mutex))
150
151 /* shorthands for conditional and unconditional function calls */
152
153 #define G_THREAD_UF(op, arglist)                                        \
154     (*g_thread_functions_for_glib_use . op) arglist
155 #define G_THREAD_CF(op, fail, arg)                                      \
156     (g_thread_supported () ? G_THREAD_UF (op, arg) : (fail))
157 #define G_THREAD_ECF(op, fail, mutex, type)                             \
158     (g_thread_supported () ?                                            \
159       ((type(*)(GMutex*, const gulong, gchar const*))                   \
160       (*g_thread_functions_for_glib_use . op))                          \
161      (mutex, G_MUTEX_DEBUG_MAGIC, G_STRLOC) : (fail))
162
163 #ifndef G_ERRORCHECK_MUTEXES
164 # define g_mutex_lock(mutex)                                            \
165     G_THREAD_CF (mutex_lock,     (void)0, (mutex))
166 # define g_mutex_trylock(mutex)                                         \
167     G_THREAD_CF (mutex_trylock,  TRUE,    (mutex))
168 # define g_mutex_unlock(mutex)                                          \
169     G_THREAD_CF (mutex_unlock,   (void)0, (mutex))
170 # define g_mutex_free(mutex)                                            \
171     G_THREAD_CF (mutex_free,     (void)0, (mutex))
172 # define g_cond_wait(cond, mutex)                                       \
173     G_THREAD_CF (cond_wait,      (void)0, (cond, mutex))
174 # define g_cond_timed_wait(cond, mutex, abs_time)                       \
175     G_THREAD_CF (cond_timed_wait, TRUE,   (cond, mutex, abs_time))
176 #else /* G_ERRORCHECK_MUTEXES */
177 # define g_mutex_lock(mutex)                                            \
178     G_THREAD_ECF (mutex_lock,    (void)0, (mutex), void)
179 # define g_mutex_trylock(mutex)                                         \
180     G_THREAD_ECF (mutex_trylock, TRUE,    (mutex), gboolean)
181 # define g_mutex_unlock(mutex)                                          \
182     G_THREAD_ECF (mutex_unlock,  (void)0, (mutex), void)
183 # define g_mutex_free(mutex)                                            \
184     G_THREAD_ECF (mutex_free,    (void)0, (mutex), void)
185 # define g_cond_wait(cond, mutex)                                       \
186     (g_thread_supported () ? ((void(*)(GCond*, GMutex*, gulong, gchar*))\
187       g_thread_functions_for_glib_use.cond_wait)                        \
188         (cond, mutex, G_MUTEX_DEBUG_MAGIC, G_STRLOC) : (void) 0)
189 # define g_cond_timed_wait(cond, mutex, abs_time)                       \
190     (g_thread_supported () ?                                            \
191       ((gboolean(*)(GCond*, GMutex*, GTimeVal*, gulong, gchar*))        \
192         g_thread_functions_for_glib_use.cond_timed_wait)                \
193           (cond, mutex, abs_time, G_MUTEX_DEBUG_MAGIC, G_STRLOC) : TRUE)
194 #endif /* G_ERRORCHECK_MUTEXES */
195
196 #define g_thread_supported()    (g_threads_got_initialized)
197 #define g_mutex_new()            G_THREAD_UF (mutex_new,      ())
198 #define g_cond_new()             G_THREAD_UF (cond_new,       ())
199 #define g_cond_signal(cond)      G_THREAD_CF (cond_signal,    (void)0, (cond))
200 #define g_cond_broadcast(cond)   G_THREAD_CF (cond_broadcast, (void)0, (cond))
201 #define g_cond_free(cond)        G_THREAD_CF (cond_free,      (void)0, (cond))
202 #define g_private_new(destructor) G_THREAD_UF (private_new, (destructor))
203 #define g_private_get(private_key) G_THREAD_CF (private_get, \
204                                                 ((gpointer)private_key), \
205                                                 (private_key))
206 #define g_private_set(private_key, value) G_THREAD_CF (private_set, \
207                                                        (void) (private_key = \
208                                                         (GPrivate*) (value)), \
209                                                        (private_key, value))
210 #define g_thread_yield()              G_THREAD_CF (thread_yield, (void)0, ())
211
212 #define g_thread_create(func, data, joinable, error)                    \
213   (g_thread_create_full (func, data, 0, joinable, FALSE,                \
214                          G_THREAD_PRIORITY_NORMAL, error))
215
216 GThread* g_thread_create_full  (GThreadFunc            func,
217                                 gpointer               data,
218                                 gulong                 stack_size,
219                                 gboolean               joinable,
220                                 gboolean               bound,
221                                 GThreadPriority        priority,
222                                 GError               **error);
223 GThread* g_thread_self         (void);
224 void     g_thread_exit         (gpointer               retval);
225 gpointer g_thread_join         (GThread               *thread);
226
227 void     g_thread_set_priority (GThread               *thread,
228                                 GThreadPriority        priority);
229
230 /* GStaticMutexes can be statically initialized with the value
231  * G_STATIC_MUTEX_INIT, and then they can directly be used, that is
232  * much easier, than having to explicitly allocate the mutex before
233  * use
234  */
235 #define g_static_mutex_lock(mutex) \
236     g_mutex_lock (g_static_mutex_get_mutex (mutex))
237 #define g_static_mutex_trylock(mutex) \
238     g_mutex_trylock (g_static_mutex_get_mutex (mutex))
239 #define g_static_mutex_unlock(mutex) \
240     g_mutex_unlock (g_static_mutex_get_mutex (mutex))
241 void g_static_mutex_init (GStaticMutex *mutex);
242 void g_static_mutex_free (GStaticMutex *mutex);
243
244 struct _GStaticPrivate
245 {
246   /*< private >*/
247   guint index;
248 };
249 #define G_STATIC_PRIVATE_INIT { 0 }
250 void     g_static_private_init           (GStaticPrivate   *private_key);
251 gpointer g_static_private_get            (GStaticPrivate   *private_key);
252 void     g_static_private_set            (GStaticPrivate   *private_key,
253                                           gpointer          data,
254                                           GDestroyNotify    notify);
255 void     g_static_private_free           (GStaticPrivate   *private_key);
256
257 typedef struct _GStaticRecMutex GStaticRecMutex;
258 struct _GStaticRecMutex
259 {
260   /*< private >*/
261   GStaticMutex mutex;
262   guint depth;
263   GSystemThread owner;
264 };
265
266 #define G_STATIC_REC_MUTEX_INIT { G_STATIC_MUTEX_INIT }
267 void     g_static_rec_mutex_init        (GStaticRecMutex *mutex);
268 void     g_static_rec_mutex_lock        (GStaticRecMutex *mutex);
269 gboolean g_static_rec_mutex_trylock     (GStaticRecMutex *mutex);
270 void     g_static_rec_mutex_unlock      (GStaticRecMutex *mutex);
271 void     g_static_rec_mutex_lock_full   (GStaticRecMutex *mutex,
272                                          guint            depth);
273 guint    g_static_rec_mutex_unlock_full (GStaticRecMutex *mutex);
274 void     g_static_rec_mutex_free        (GStaticRecMutex *mutex);
275
276 typedef struct _GStaticRWLock GStaticRWLock;
277 struct _GStaticRWLock
278 {
279   /*< private >*/
280   GStaticMutex mutex;
281   GCond *read_cond;
282   GCond *write_cond;
283   guint read_counter;
284   gboolean have_writer;
285   guint want_to_read;
286   guint want_to_write;
287 };
288
289 #define G_STATIC_RW_LOCK_INIT { G_STATIC_MUTEX_INIT, NULL, NULL, 0, FALSE, 0, 0 }
290
291 void      g_static_rw_lock_init           (GStaticRWLock* lock);
292 void      g_static_rw_lock_reader_lock    (GStaticRWLock* lock);
293 gboolean  g_static_rw_lock_reader_trylock (GStaticRWLock* lock);
294 void      g_static_rw_lock_reader_unlock  (GStaticRWLock* lock);
295 void      g_static_rw_lock_writer_lock    (GStaticRWLock* lock);
296 gboolean  g_static_rw_lock_writer_trylock (GStaticRWLock* lock);
297 void      g_static_rw_lock_writer_unlock  (GStaticRWLock* lock);
298 void      g_static_rw_lock_free           (GStaticRWLock* lock);
299
300 void      g_thread_foreach                (GFunc          thread_func,
301                                            gpointer       user_data);
302
303 typedef enum
304 {
305   G_ONCE_STATUS_NOTCALLED,
306   G_ONCE_STATUS_PROGRESS,
307   G_ONCE_STATUS_READY  
308 } GOnceStatus;
309
310 typedef struct _GOnce GOnce;
311 struct _GOnce
312 {
313   volatile GOnceStatus status;
314   volatile gpointer retval;
315 };
316
317 #define G_ONCE_INIT { G_ONCE_STATUS_NOTCALLED, NULL }
318
319 gpointer g_once_impl (GOnce *once, GThreadFunc func, gpointer arg);
320
321 #ifdef G_ATOMIC_OP_MEMORY_BARRIER_NEEDED
322 # define g_once(once, func, arg) g_once_impl ((once), (func), (arg))
323 #else /* !G_ATOMIC_OP_MEMORY_BARRIER_NEEDED*/
324 # define g_once(once, func, arg) \
325   (((once)->status == G_ONCE_STATUS_READY) ? \
326    (once)->retval : \
327    g_once_impl ((once), (func), (arg)))
328 #endif /* G_ATOMIC_OP_MEMORY_BARRIER_NEEDED */
329
330 /* initialize-once guards, keyed by value_location */
331 G_INLINE_FUNC gboolean  g_once_init_enter       (volatile gsize *value_location);
332 gboolean                g_once_init_enter_impl  (volatile gsize *value_location);
333 void                    g_once_init_leave       (volatile gsize *value_location,
334                                                  gsize           initialization_value);
335 #if defined (G_CAN_INLINE) || defined (__G_THREAD_C__)
336 G_INLINE_FUNC gboolean
337 g_once_init_enter (volatile gsize *value_location)
338 {
339   if G_LIKELY (g_atomic_pointer_get ((void*volatile*) value_location) != NULL)
340     return FALSE;
341   else
342     return g_once_init_enter_impl (value_location);
343 }
344 #endif /* G_CAN_INLINE || __G_THREAD_C__ */
345
346 /* these are some convenience macros that expand to nothing if GLib
347  * was configured with --disable-threads. for using StaticMutexes,
348  * you define them with G_LOCK_DEFINE_STATIC (name) or G_LOCK_DEFINE (name)
349  * if you need to export the mutex. With G_LOCK_EXTERN (name) you can
350  * declare such an globally defined lock. name is a unique identifier
351  * for the protected varibale or code portion. locking, testing and
352  * unlocking of such mutexes can be done with G_LOCK(), G_UNLOCK() and
353  * G_TRYLOCK() respectively.
354  */
355 extern void glib_dummy_decl (void);
356 #define G_LOCK_NAME(name)               g__ ## name ## _lock
357 #ifdef  G_THREADS_ENABLED
358 #  define G_LOCK_DEFINE_STATIC(name)    static G_LOCK_DEFINE (name)
359 #  define G_LOCK_DEFINE(name)           \
360     GStaticMutex G_LOCK_NAME (name) = G_STATIC_MUTEX_INIT
361 #  define G_LOCK_EXTERN(name)           extern GStaticMutex G_LOCK_NAME (name)
362
363 #  ifdef G_DEBUG_LOCKS
364 #    define G_LOCK(name)                G_STMT_START{             \
365         g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG,                   \
366                "file %s: line %d (%s): locking: %s ",             \
367                __FILE__,        __LINE__, G_STRFUNC,              \
368                #name);                                            \
369         g_static_mutex_lock (&G_LOCK_NAME (name));                \
370      }G_STMT_END
371 #    define G_UNLOCK(name)              G_STMT_START{             \
372         g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG,                   \
373                "file %s: line %d (%s): unlocking: %s ",           \
374                __FILE__,        __LINE__, G_STRFUNC,              \
375                #name);                                            \
376        g_static_mutex_unlock (&G_LOCK_NAME (name));               \
377      }G_STMT_END
378 #    define G_TRYLOCK(name)                                       \
379         (g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG,                  \
380                "file %s: line %d (%s): try locking: %s ",         \
381                __FILE__,        __LINE__, G_STRFUNC,              \
382                #name), g_static_mutex_trylock (&G_LOCK_NAME (name)))
383 #  else  /* !G_DEBUG_LOCKS */
384 #    define G_LOCK(name) g_static_mutex_lock       (&G_LOCK_NAME (name))
385 #    define G_UNLOCK(name) g_static_mutex_unlock   (&G_LOCK_NAME (name))
386 #    define G_TRYLOCK(name) g_static_mutex_trylock (&G_LOCK_NAME (name))
387 #  endif /* !G_DEBUG_LOCKS */
388 #else   /* !G_THREADS_ENABLED */
389 #  define G_LOCK_DEFINE_STATIC(name)    extern void glib_dummy_decl (void)
390 #  define G_LOCK_DEFINE(name)           extern void glib_dummy_decl (void)
391 #  define G_LOCK_EXTERN(name)           extern void glib_dummy_decl (void)
392 #  define G_LOCK(name)
393 #  define G_UNLOCK(name)
394 #  define G_TRYLOCK(name)               (TRUE)
395 #endif  /* !G_THREADS_ENABLED */
396
397 G_END_DECLS
398
399 #endif /* __G_THREAD_H__ */