Deprecate g_thread_create_full()
[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/gutils.h>        /* for G_INLINE_FUNC */
36 #include <glib/gatomic.h>       /* for g_atomic_pointer_get */
37
38 G_BEGIN_DECLS
39
40 /* GLib Thread support
41  */
42
43 extern GQuark g_thread_error_quark (void);
44 #define G_THREAD_ERROR g_thread_error_quark ()
45
46 typedef enum
47 {
48   G_THREAD_ERROR_AGAIN /* Resource temporarily unavailable */
49 } GThreadError;
50
51 typedef gpointer (*GThreadFunc) (gpointer data);
52
53 /* This is "deprecated", but we can't actually remove it since
54  * g_thread_create_full takes it.
55  */
56 typedef enum
57 {
58   G_THREAD_PRIORITY_LOW,
59   G_THREAD_PRIORITY_NORMAL,
60   G_THREAD_PRIORITY_HIGH,
61   G_THREAD_PRIORITY_URGENT
62 } GThreadPriority;
63
64 typedef struct _GThread         GThread;
65 struct  _GThread
66 {
67   /*< private >*/
68   GThreadFunc func;
69   gpointer data;
70   gboolean joinable;
71   GThreadPriority priority;
72 };
73
74 typedef struct _GMutex          GMutex;
75 typedef struct _GCond           GCond;
76 typedef struct _GPrivate        GPrivate;
77 typedef struct _GStaticPrivate  GStaticPrivate;
78
79 #ifdef G_OS_WIN32
80
81 #define G_MUTEX_INIT { NULL }
82 struct _GMutex
83 {
84     gpointer impl;
85 };
86
87 #define G_COND_INIT { NULL }
88 struct _GCond
89 {
90     gpointer impl;
91 };
92 #else
93
94 #include <pthread.h>
95
96 #define G_MUTEX_INIT { PTHREAD_MUTEX_INITIALIZER }
97 struct _GMutex
98 {
99   pthread_mutex_t impl;
100 };
101
102 #define G_COND_INIT { PTHREAD_COND_INITIALIZER }
103 struct _GCond
104 {
105   pthread_cond_t impl;
106 };
107
108 #endif
109
110 typedef struct _GThreadFunctions GThreadFunctions;
111 struct _GThreadFunctions
112 {
113   GMutex*  (*mutex_new)           (void);
114   void     (*mutex_lock)          (GMutex               *mutex);
115   gboolean (*mutex_trylock)       (GMutex               *mutex);
116   void     (*mutex_unlock)        (GMutex               *mutex);
117   void     (*mutex_free)          (GMutex               *mutex);
118   GCond*   (*cond_new)            (void);
119   void     (*cond_signal)         (GCond                *cond);
120   void     (*cond_broadcast)      (GCond                *cond);
121   void     (*cond_wait)           (GCond                *cond,
122                                    GMutex               *mutex);
123   gboolean (*cond_timed_wait)     (GCond                *cond,
124                                    GMutex               *mutex,
125                                    GTimeVal             *end_time);
126   void      (*cond_free)          (GCond                *cond);
127   GPrivate* (*private_new)        (GDestroyNotify        destructor);
128   gpointer  (*private_get)        (GPrivate             *private_key);
129   void      (*private_set)        (GPrivate             *private_key,
130                                    gpointer              data);
131   void      (*thread_create)      (GThreadFunc           func,
132                                    gpointer              data,
133                                    gulong                stack_size,
134                                    gboolean              joinable,
135                                    gboolean              bound,
136                                    GThreadPriority       priority,
137                                    gpointer              thread,
138                                    GError              **error);
139   void      (*thread_yield)       (void);
140   void      (*thread_join)        (gpointer              thread);
141   void      (*thread_exit)        (void);
142   void      (*thread_set_priority)(gpointer              thread,
143                                    GThreadPriority       priority);
144   void      (*thread_self)        (gpointer              thread);
145   gboolean  (*thread_equal)       (gpointer              thread1,
146                                    gpointer              thread2);
147 };
148
149 GLIB_VAR GThreadFunctions       g_thread_functions_for_glib_use;
150 GLIB_VAR gboolean               g_thread_use_default_impl;
151 GLIB_VAR gboolean               g_threads_got_initialized;
152
153 #ifndef G_DISABLE_DEPRECATED
154 GLIB_VAR guint64   (*g_thread_gettime) (void);
155 #endif
156
157 /* initializes the mutex/cond/private implementation for glib, might
158  * only be called once, and must not be called directly or indirectly
159  * from another glib-function, e.g. as a callback.
160  */
161 void    g_thread_init   (GThreadFunctions       *vtable);
162
163 /* Checks if thread support is initialized.  Identical to the
164  * g_thread_supported macro but provided for language bindings.
165  */
166 gboolean g_thread_get_initialized (void);
167
168 /* internal function for fallback static mutex implementation */
169 GMutex* g_static_mutex_get_mutex_impl   (GMutex **mutex);
170
171 #if defined(G_THREADS_MANDATORY)
172 #define g_thread_supported()     1
173 #else
174 #define g_thread_supported()    (g_threads_got_initialized)
175 #endif
176
177 #ifndef G_DISABLE_DEPRECATED
178 GThread* g_thread_create_full  (GThreadFunc            func,
179                                 gpointer               data,
180                                 gulong                 stack_size,
181                                 gboolean               joinable,
182                                 gboolean               bound,
183                                 GThreadPriority        priority,
184                                 GError               **error);
185 #endif
186
187 GThread *       g_thread_create                 (GThreadFunc   func,
188                                                  gpointer      data,
189                                                  gboolean      joinable,
190                                                  GError      **error);
191
192 GThread *       g_thread_create_with_stack_size (GThreadFunc   func,
193                                                  gpointer      data,
194                                                  gboolean      joinable,
195                                                  gsize         stack_size,
196                                                  GError      **error);
197
198 GThread* g_thread_self         (void);
199 void     g_thread_exit         (gpointer               retval);
200 gpointer g_thread_join         (GThread               *thread);
201 void     g_thread_yield        (void);
202
203 #ifndef G_DISABLE_DEPRECATED
204 void     g_thread_set_priority (GThread               *thread,
205                                 GThreadPriority        priority);
206 #endif
207
208 #ifdef G_OS_WIN32
209 typedef GMutex * GStaticMutex;
210 #define G_STATIC_MUTEX_INIT NULL
211 #define g_static_mutex_get_mutex g_static_mutex_get_mutex_impl
212 #else /* G_OS_WIN32 */
213 typedef struct {
214   struct _GMutex *unused;
215   GMutex mutex;
216 } GStaticMutex;
217 #define G_STATIC_MUTEX_INIT { NULL, G_MUTEX_INIT }
218 #define g_static_mutex_get_mutex(s) (&(s)->mutex)
219 #endif /* G_OS_WIN32 */
220
221 #define g_static_mutex_lock(mutex) \
222     g_mutex_lock (g_static_mutex_get_mutex (mutex))
223 #define g_static_mutex_trylock(mutex) \
224     g_mutex_trylock (g_static_mutex_get_mutex (mutex))
225 #define g_static_mutex_unlock(mutex) \
226     g_mutex_unlock (g_static_mutex_get_mutex (mutex))
227 void g_static_mutex_init (GStaticMutex *mutex);
228 void g_static_mutex_free (GStaticMutex *mutex);
229
230 struct _GStaticPrivate
231 {
232   /*< private >*/
233   guint index;
234 };
235 #define G_STATIC_PRIVATE_INIT { 0 }
236 void     g_static_private_init           (GStaticPrivate   *private_key);
237 gpointer g_static_private_get            (GStaticPrivate   *private_key);
238 void     g_static_private_set            (GStaticPrivate   *private_key,
239                                           gpointer          data,
240                                           GDestroyNotify    notify);
241 void     g_static_private_free           (GStaticPrivate   *private_key);
242
243 typedef struct _GStaticRecMutex GStaticRecMutex;
244 struct _GStaticRecMutex
245 {
246   /*< private >*/
247   GStaticMutex mutex;
248   guint depth;
249   GSystemThread owner;
250 };
251
252 #define G_STATIC_REC_MUTEX_INIT { G_STATIC_MUTEX_INIT, 0, {{0, 0, 0, 0}} }
253 void     g_static_rec_mutex_init        (GStaticRecMutex *mutex);
254 void     g_static_rec_mutex_lock        (GStaticRecMutex *mutex);
255 gboolean g_static_rec_mutex_trylock     (GStaticRecMutex *mutex);
256 void     g_static_rec_mutex_unlock      (GStaticRecMutex *mutex);
257 void     g_static_rec_mutex_lock_full   (GStaticRecMutex *mutex,
258                                          guint            depth);
259 guint    g_static_rec_mutex_unlock_full (GStaticRecMutex *mutex);
260 void     g_static_rec_mutex_free        (GStaticRecMutex *mutex);
261
262 typedef struct _GStaticRWLock GStaticRWLock;
263 struct _GStaticRWLock
264 {
265   /*< private >*/
266   GStaticMutex mutex;
267   GCond *read_cond;
268   GCond *write_cond;
269   guint read_counter;
270   gboolean have_writer;
271   guint want_to_read;
272   guint want_to_write;
273 };
274
275 #define G_STATIC_RW_LOCK_INIT { G_STATIC_MUTEX_INIT, NULL, NULL, 0, FALSE, 0, 0 }
276
277 void      g_static_rw_lock_init           (GStaticRWLock* lock);
278 void      g_static_rw_lock_reader_lock    (GStaticRWLock* lock);
279 gboolean  g_static_rw_lock_reader_trylock (GStaticRWLock* lock);
280 void      g_static_rw_lock_reader_unlock  (GStaticRWLock* lock);
281 void      g_static_rw_lock_writer_lock    (GStaticRWLock* lock);
282 gboolean  g_static_rw_lock_writer_trylock (GStaticRWLock* lock);
283 void      g_static_rw_lock_writer_unlock  (GStaticRWLock* lock);
284 void      g_static_rw_lock_free           (GStaticRWLock* lock);
285
286 void      g_thread_foreach                (GFunc          thread_func,
287                                            gpointer       user_data);
288
289 typedef enum
290 {
291   G_ONCE_STATUS_NOTCALLED,
292   G_ONCE_STATUS_PROGRESS,
293   G_ONCE_STATUS_READY  
294 } GOnceStatus;
295
296 typedef struct _GOnce GOnce;
297 struct _GOnce
298 {
299   volatile GOnceStatus status;
300   volatile gpointer retval;
301 };
302
303 #define G_ONCE_INIT { G_ONCE_STATUS_NOTCALLED, NULL }
304
305 gpointer g_once_impl (GOnce *once, GThreadFunc func, gpointer arg);
306
307 #ifdef G_ATOMIC_OP_MEMORY_BARRIER_NEEDED
308 # define g_once(once, func, arg) g_once_impl ((once), (func), (arg))
309 #else /* !G_ATOMIC_OP_MEMORY_BARRIER_NEEDED*/
310 # define g_once(once, func, arg) \
311   (((once)->status == G_ONCE_STATUS_READY) ? \
312    (once)->retval : \
313    g_once_impl ((once), (func), (arg)))
314 #endif /* G_ATOMIC_OP_MEMORY_BARRIER_NEEDED */
315
316 /* initialize-once guards, keyed by value_location */
317 G_INLINE_FUNC gboolean  g_once_init_enter       (volatile gsize *value_location);
318 gboolean                g_once_init_enter_impl  (volatile gsize *value_location);
319 void                    g_once_init_leave       (volatile gsize *value_location,
320                                                  gsize           initialization_value);
321 #if defined (G_CAN_INLINE) || defined (__G_THREAD_C__)
322 G_INLINE_FUNC gboolean
323 g_once_init_enter (volatile gsize *value_location)
324 {
325   if G_LIKELY ((gpointer) g_atomic_pointer_get (value_location) != NULL)
326     return FALSE;
327   else
328     return g_once_init_enter_impl (value_location);
329 }
330 #endif /* G_CAN_INLINE || __G_THREAD_C__ */
331
332 /* these are some convenience macros that expand to nothing if GLib
333  * was configured with --disable-threads. for using StaticMutexes,
334  * you define them with G_LOCK_DEFINE_STATIC (name) or G_LOCK_DEFINE (name)
335  * if you need to export the mutex. With G_LOCK_EXTERN (name) you can
336  * declare such an globally defined lock. name is a unique identifier
337  * for the protected varibale or code portion. locking, testing and
338  * unlocking of such mutexes can be done with G_LOCK(), G_UNLOCK() and
339  * G_TRYLOCK() respectively.
340  */
341 extern void glib_dummy_decl (void);
342 #define G_LOCK_NAME(name)               g__ ## name ## _lock
343 #define G_LOCK_DEFINE_STATIC(name)    static G_LOCK_DEFINE (name)
344 #define G_LOCK_DEFINE(name)           \
345   GMutex G_LOCK_NAME (name) = G_MUTEX_INIT
346 #define G_LOCK_EXTERN(name)           extern GMutex G_LOCK_NAME (name)
347
348 #ifdef G_DEBUG_LOCKS
349 #  define G_LOCK(name)                G_STMT_START{             \
350       g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG,                   \
351              "file %s: line %d (%s): locking: %s ",             \
352              __FILE__,        __LINE__, G_STRFUNC,              \
353              #name);                                            \
354       g_mutex_lock (&G_LOCK_NAME (name));                       \
355    }G_STMT_END
356 #  define G_UNLOCK(name)              G_STMT_START{             \
357       g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG,                   \
358              "file %s: line %d (%s): unlocking: %s ",           \
359              __FILE__,        __LINE__, G_STRFUNC,              \
360              #name);                                            \
361      g_mutex_unlock (&G_LOCK_NAME (name));                      \
362    }G_STMT_END
363 #  define G_TRYLOCK(name)                                       \
364       (g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG,                  \
365              "file %s: line %d (%s): try locking: %s ",         \
366              __FILE__,        __LINE__, G_STRFUNC,              \
367              #name), g_mutex_trylock (&G_LOCK_NAME (name)))
368 #else  /* !G_DEBUG_LOCKS */
369 #  define G_LOCK(name) g_mutex_lock       (&G_LOCK_NAME (name))
370 #  define G_UNLOCK(name) g_mutex_unlock   (&G_LOCK_NAME (name))
371 #  define G_TRYLOCK(name) g_mutex_trylock (&G_LOCK_NAME (name))
372 #endif /* !G_DEBUG_LOCKS */
373
374
375 void                    g_mutex_init                                    (GMutex         *mutex);
376 void                    g_mutex_clear                                   (GMutex         *mutex);
377
378 void                    g_mutex_lock                                    (GMutex         *mutex);
379 void                    g_mutex_unlock                                  (GMutex         *mutex);
380 gboolean                g_mutex_trylock                                 (GMutex         *mutex);
381
382 void                    g_cond_init                                     (GCond          *cond);
383 void                    g_cond_clear                                    (GCond          *cond);
384
385 void                    g_cond_wait                                     (GCond          *cond,
386                                                                          GMutex         *mutex);
387 void                    g_cond_signal                                   (GCond          *cond);
388 void                    g_cond_broadcast                                (GCond          *cond);
389 gboolean                g_cond_timed_wait                               (GCond          *cond,
390                                                                          GMutex         *mutex,
391                                                                          GTimeVal       *timeval);
392 gboolean                g_cond_timedwait                                (GCond          *cond,
393                                                                          GMutex         *mutex,
394                                                                          gint64          abs_time);
395
396 GMutex *                g_mutex_new                                     (void);
397 void                    g_mutex_free                                    (GMutex         *mutex);
398 GCond *                 g_cond_new                                      (void);
399 void                    g_cond_free                                     (GCond          *cond);
400
401 GPrivate *              g_private_new                                   (GDestroyNotify  notify);
402 gpointer                g_private_get                                   (GPrivate       *key);
403 void                    g_private_set                                   (GPrivate       *key,
404                                                                          gpointer        value);
405
406 G_END_DECLS
407
408 #endif /* __G_THREAD_H__ */