g_thread_new: never fail
[glib.git] / glib / gthread.h
blob6400f69baa50b0cded88d36dcac1dfb394609019
1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * This library is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as
6 * published by the Free Software Foundation; either version 2 of the
7 * licence, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful, but
10 * 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.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
17 * USA.
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/.
27 #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
28 #error "Only <glib.h> can be included directly."
29 #endif
31 #ifndef __G_THREAD_H__
32 #define __G_THREAD_H__
34 #include <glib/gatomic.h>
35 #include <glib/gerror.h>
37 G_BEGIN_DECLS
39 #define G_THREAD_ERROR g_thread_error_quark ()
40 GQuark g_thread_error_quark (void);
42 typedef enum
44 G_THREAD_ERROR_AGAIN /* Resource temporarily unavailable */
45 } GThreadError;
47 typedef gpointer (*GThreadFunc) (gpointer data);
49 typedef struct _GThread GThread;
51 typedef union _GMutex GMutex;
52 typedef struct _GRecMutex GRecMutex;
53 typedef struct _GRWLock GRWLock;
54 typedef struct _GCond GCond;
55 typedef struct _GPrivate GPrivate;
56 typedef struct _GOnce GOnce;
58 union _GMutex
60 /*< private >*/
61 gpointer p;
62 guint i[2];
65 struct _GRWLock
67 /*< private >*/
68 gpointer p;
69 guint i[2];
72 struct _GCond
74 /*< private >*/
75 gpointer p;
76 guint i[2];
79 struct _GRecMutex
81 /*< private >*/
82 gpointer p;
83 guint i[2];
86 #define G_PRIVATE_INIT(notify) { NULL, (notify), { NULL, NULL } }
87 struct _GPrivate
89 /*< private >*/
90 gpointer p;
91 GDestroyNotify notify;
92 gpointer future[2];
95 typedef enum
97 G_ONCE_STATUS_NOTCALLED,
98 G_ONCE_STATUS_PROGRESS,
99 G_ONCE_STATUS_READY
100 } GOnceStatus;
102 #define G_ONCE_INIT { G_ONCE_STATUS_NOTCALLED, NULL }
103 struct _GOnce
105 volatile GOnceStatus status;
106 volatile gpointer retval;
109 #define G_LOCK_NAME(name) g__ ## name ## _lock
110 #define G_LOCK_DEFINE_STATIC(name) static G_LOCK_DEFINE (name)
111 #define G_LOCK_DEFINE(name) GMutex G_LOCK_NAME (name)
112 #define G_LOCK_EXTERN(name) extern GMutex G_LOCK_NAME (name)
114 #ifdef G_DEBUG_LOCKS
115 # define G_LOCK(name) G_STMT_START{ \
116 g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, \
117 "file %s: line %d (%s): locking: %s ", \
118 __FILE__, __LINE__, G_STRFUNC, \
119 #name); \
120 g_mutex_lock (&G_LOCK_NAME (name)); \
121 }G_STMT_END
122 # define G_UNLOCK(name) G_STMT_START{ \
123 g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, \
124 "file %s: line %d (%s): unlocking: %s ", \
125 __FILE__, __LINE__, G_STRFUNC, \
126 #name); \
127 g_mutex_unlock (&G_LOCK_NAME (name)); \
128 }G_STMT_END
129 # define G_TRYLOCK(name) \
130 (g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, \
131 "file %s: line %d (%s): try locking: %s ", \
132 __FILE__, __LINE__, G_STRFUNC, \
133 #name), g_mutex_trylock (&G_LOCK_NAME (name)))
134 #else /* !G_DEBUG_LOCKS */
135 # define G_LOCK(name) g_mutex_lock (&G_LOCK_NAME (name))
136 # define G_UNLOCK(name) g_mutex_unlock (&G_LOCK_NAME (name))
137 # define G_TRYLOCK(name) g_mutex_trylock (&G_LOCK_NAME (name))
138 #endif /* !G_DEBUG_LOCKS */
140 GThread * g_thread_ref (GThread *thread);
141 void g_thread_unref (GThread *thread);
142 GThread * g_thread_new (const gchar *name,
143 GThreadFunc func,
144 gpointer data);
145 GThread * g_thread_try (const gchar *name,
146 GThreadFunc func,
147 gpointer data,
148 GError **error);
149 GThread * g_thread_new_full (const gchar *name,
150 GThreadFunc func,
151 gpointer data,
152 gsize stack_size,
153 GError **error);
154 GThread * g_thread_self (void);
155 void g_thread_exit (gpointer retval);
156 gpointer g_thread_join (GThread *thread);
157 void g_thread_yield (void);
160 void g_mutex_init (GMutex *mutex);
161 void g_mutex_clear (GMutex *mutex);
162 void g_mutex_lock (GMutex *mutex);
163 gboolean g_mutex_trylock (GMutex *mutex);
164 void g_mutex_unlock (GMutex *mutex);
166 void g_rw_lock_init (GRWLock *rw_lock);
167 void g_rw_lock_clear (GRWLock *rw_lock);
168 void g_rw_lock_writer_lock (GRWLock *rw_lock);
169 gboolean g_rw_lock_writer_trylock (GRWLock *rw_lock);
170 void g_rw_lock_writer_unlock (GRWLock *rw_lock);
171 void g_rw_lock_reader_lock (GRWLock *rw_lock);
172 gboolean g_rw_lock_reader_trylock (GRWLock *rw_lock);
173 void g_rw_lock_reader_unlock (GRWLock *rw_lock);
175 void g_rec_mutex_init (GRecMutex *rec_mutex);
176 void g_rec_mutex_clear (GRecMutex *rec_mutex);
177 void g_rec_mutex_lock (GRecMutex *rec_mutex);
178 gboolean g_rec_mutex_trylock (GRecMutex *rec_mutex);
179 void g_rec_mutex_unlock (GRecMutex *rec_mutex);
181 void g_cond_init (GCond *cond);
182 void g_cond_clear (GCond *cond);
183 void g_cond_wait (GCond *cond,
184 GMutex *mutex);
185 void g_cond_signal (GCond *cond);
186 void g_cond_broadcast (GCond *cond);
187 gboolean g_cond_timed_wait (GCond *cond,
188 GMutex *mutex,
189 GTimeVal *timeval);
190 gboolean g_cond_timedwait (GCond *cond,
191 GMutex *mutex,
192 gint64 abs_time);
194 gpointer g_private_get (GPrivate *key);
195 void g_private_set (GPrivate *key,
196 gpointer value);
197 void g_private_replace (GPrivate *key,
198 gpointer value);
200 gpointer g_once_impl (GOnce *once,
201 GThreadFunc func,
202 gpointer arg);
203 gboolean g_once_init_enter (volatile void *location);
204 void g_once_init_leave (volatile void *location,
205 gsize result);
207 #ifdef G_ATOMIC_OP_MEMORY_BARRIER_NEEDED
208 # define g_once(once, func, arg) g_once_impl ((once), (func), (arg))
209 #else /* !G_ATOMIC_OP_MEMORY_BARRIER_NEEDED*/
210 # define g_once(once, func, arg) \
211 (((once)->status == G_ONCE_STATUS_READY) ? \
212 (once)->retval : \
213 g_once_impl ((once), (func), (arg)))
214 #endif /* G_ATOMIC_OP_MEMORY_BARRIER_NEEDED */
216 #ifdef __GNUC__
217 # define g_once_init_enter(location) \
218 (G_GNUC_EXTENSION ({ \
219 G_STATIC_ASSERT (sizeof *(location) == sizeof (gpointer)); \
220 (void) (0 ? (gpointer) *(location) : 0); \
221 (!g_atomic_pointer_get (location) && \
222 g_once_init_enter (location)); \
224 # define g_once_init_leave(location, result) \
225 (G_GNUC_EXTENSION ({ \
226 G_STATIC_ASSERT (sizeof *(location) == sizeof (gpointer)); \
227 (void) (0 ? *(location) = (result) : 0); \
228 g_once_init_leave ((location), (gsize) (result)); \
230 #else
231 # define g_once_init_enter(location) \
232 (g_once_init_enter((location)))
233 # define g_once_init_leave(location, result) \
234 (g_once_init_leave((location), (gsize) (result)))
235 #endif
237 G_END_DECLS
239 #endif /* __G_THREAD_H__ */