Include gerror.h before it is used for some g_thread_* functions.
[platform/upstream/glib.git] / gthread / gthread-posix.c
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * gthread.c: posix thread system implementation
5  * Copyright 1998 Sebastian Wilhelmi; University of Karlsruhe
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 /*
24  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
25  * file for a list of people on the GLib Team.  See the ChangeLog
26  * files for a list of changes.  These files are distributed with
27  * GLib at ftp://ftp.gtk.org/pub/gtk/. 
28  */
29
30 /* 
31  * MT safe
32  */
33
34 #include <pthread.h>
35 #include <errno.h>
36 #include <stdlib.h>
37 #ifdef HAVE_SYS_TIME_H
38 #include <sys/time.h>
39 #endif
40 #ifdef HAVE_UNISTD_H
41 #include <unistd.h>
42 #endif
43
44 #define posix_print_error( name, num )                                  \
45   g_error( "file %s: line %d (%s): error %s during %s",                 \
46            __FILE__, __LINE__, G_GNUC_PRETTY_FUNCTION,                  \
47            g_strerror((num)), #name )
48
49 #if defined(G_THREADS_IMPL_POSIX)
50 # define posix_check_for_error( what ) G_STMT_START{                    \
51     int error = (what);                                                 \
52     if( error ) { posix_print_error( what, error ); }                   \
53     }G_STMT_END
54 # define mutexattr_default NULL
55 # define condattr_default NULL
56 #elif defined(G_THREADS_IMPL_DCE)
57 # define posix_check_for_error( what ) G_STMT_START{                    \
58     if( (what) == -1 ) { posix_print_error( what, errno ); }            \
59     }G_STMT_END
60 # define pthread_key_create(a, b) pthread_keycreate (a, b)
61 # define pthread_attr_init(a) pthread_attr_create (a)
62 # define pthread_attr_destroy(a) pthread_attr_delete (a)
63 # define pthread_create(a, b, c, d) pthread_create(a, *b, c, d) 
64 # define mutexattr_default (pthread_mutexattr_default)
65 # define condattr_default (pthread_condattr_default)
66 #else /* neither G_THREADS_IMPL_POSIX nor G_THREADS_IMPL_DCE are defined */
67 # error This should not happen. Contact the GLib team.
68 #endif
69
70 #if defined(POSIX_MIN_PRIORITY) && defined(POSIX_MAX_PRIORITY)
71 #  define HAVE_PRIORITIES 1
72 #endif
73
74 gulong g_thread_min_stack_size = 0;
75
76 #define HAVE_G_THREAD_IMPL_INIT
77 static void 
78 g_thread_impl_init()
79 {
80 #ifdef HAVE_PRIORITIES
81   g_thread_min_priority = POSIX_MIN_PRIORITY;
82   g_thread_max_priority = POSIX_MAX_PRIORITY;
83 #endif /* HAVE_PRIORITIES */
84 #ifdef _SC_THREAD_STACK_MIN
85   g_thread_min_stack_size = MAX (sysconf (_SC_THREAD_STACK_MIN), 0);
86 #endif /* _SC_THREAD_STACK_MIN */
87 }
88
89 static GMutex *
90 g_mutex_new_posix_impl (void)
91 {
92   GMutex *result = (GMutex *) g_new (pthread_mutex_t, 1);
93   posix_check_for_error (pthread_mutex_init ((pthread_mutex_t *) result, 
94                                              mutexattr_default));
95   return result;
96 }
97
98 static void
99 g_mutex_free_posix_impl (GMutex * mutex)
100 {
101   posix_check_for_error (pthread_mutex_destroy ((pthread_mutex_t *) mutex));
102   g_free (mutex);
103 }
104
105 /* NOTE: the functions g_mutex_lock and g_mutex_unlock may not use
106    functions from gmem.c and gmessages.c; */
107
108 /* pthread_mutex_lock, pthread_mutex_unlock can be taken directly, as
109    signature and semantic are right, but without error check then!!!!,
110    we might want to change this therefore. */
111
112 static gboolean
113 g_mutex_trylock_posix_impl (GMutex * mutex)
114 {
115   int result;
116
117   result = pthread_mutex_trylock ((pthread_mutex_t *) mutex);
118
119 #ifdef G_THREADS_IMPL_POSIX
120   if (result == EBUSY)
121     return FALSE;
122 #else /* G_THREADS_IMPL_DCE */
123   if (result == 0)
124     return FALSE;
125 #endif
126
127   posix_check_for_error (result);
128   return TRUE;
129 }
130
131 static GCond *
132 g_cond_new_posix_impl (void)
133 {
134   GCond *result = (GCond *) g_new (pthread_cond_t, 1);
135   posix_check_for_error (pthread_cond_init ((pthread_cond_t *) result, 
136                                             condattr_default));
137   return result;
138 }
139
140 /* pthread_cond_signal, pthread_cond_broadcast and pthread_cond_wait
141    can be taken directly, as signature and semantic are right, but
142    without error check then!!!!, we might want to change this
143    therfore. */
144
145 #define G_MICROSEC 1000000
146 #define G_NANOSEC 1000000000
147
148 static gboolean
149 g_cond_timed_wait_posix_impl (GCond * cond,
150                               GMutex * entered_mutex,
151                               GTimeVal * abs_time)
152 {
153   int result;
154   struct timespec end_time;
155   gboolean timed_out;
156
157   g_return_val_if_fail (cond != NULL, FALSE);
158   g_return_val_if_fail (entered_mutex != NULL, FALSE);
159
160   if (!abs_time)
161     {
162       g_cond_wait (cond, entered_mutex);
163       return TRUE;
164     }
165
166   end_time.tv_sec = abs_time->tv_sec;
167   end_time.tv_nsec = abs_time->tv_usec * (G_NANOSEC / G_MICROSEC);
168   g_assert (end_time.tv_nsec < G_NANOSEC);
169   result = pthread_cond_timedwait ((pthread_cond_t *) cond,
170                                    (pthread_mutex_t *) entered_mutex,
171                                    &end_time);
172
173 #ifdef G_THREADS_IMPL_POSIX
174   timed_out = (result == ETIMEDOUT);
175 #else /* G_THREADS_IMPL_DCE */
176   timed_out = (result == -1) && (errno = EAGAIN);
177 #endif
178
179   if (!timed_out)
180     posix_check_for_error (result);
181   return !timed_out;
182 }
183
184 static void
185 g_cond_free_posix_impl (GCond * cond)
186 {
187   posix_check_for_error (pthread_cond_destroy ((pthread_cond_t *) cond));
188   g_free (cond);
189 }
190
191 static GPrivate *
192 g_private_new_posix_impl (GDestroyNotify destructor)
193 {
194   GPrivate *result = (GPrivate *) g_new (pthread_key_t, 1);
195   posix_check_for_error (pthread_key_create ((pthread_key_t *) result,
196                                              destructor));
197   return result;
198 }
199
200 /* NOTE: the functions g_private_get and g_private_set may not use
201    functions from gmem.c and gmessages.c */
202
203 static void
204 g_private_set_posix_impl (GPrivate * private_key, gpointer value)
205 {
206   if (!private_key)
207     return;
208   pthread_setspecific (*(pthread_key_t *) private_key, value);
209 }
210
211 static gpointer
212 g_private_get_posix_impl (GPrivate * private_key)
213 {
214   if (!private_key)
215     return NULL;
216 #ifdef G_THREADS_IMPL_POSIX
217   return pthread_getspecific (*(pthread_key_t *) private_key);
218 #else /* G_THREADS_IMPL_DCE */
219   {
220     void* data;
221     posix_check_for_error (pthread_getspecific (*(pthread_key_t *) 
222                                                 private_key, &data));
223     return data;
224   }
225 #endif
226 }
227
228 static void
229 g_thread_create_posix_impl (GThreadFunc thread_func, 
230                             gpointer arg, 
231                             gulong stack_size,
232                             gboolean joinable,
233                             gboolean bound,
234                             GThreadPriority priority,
235                             gpointer thread,
236                             GError **error)
237 {
238   pthread_attr_t attr;
239   gint ret;
240
241   g_return_if_fail (thread_func);
242
243   posix_check_for_error (pthread_attr_init (&attr));
244   
245 #ifdef HAVE_PTHREAD_ATTR_SETSTACKSIZE
246   if (stack_size)
247     {
248       stack_size = MAX (g_thread_min_stack_size, stack_size);
249       posix_check_for_error (pthread_attr_setstacksize (&attr, stack_size));
250     }
251 #endif /* HAVE_PTHREAD_ATTR_SETSTACKSIZE */
252
253 #ifdef PTHREAD_SCOPE_SYSTEM
254   if (bound)
255     /* No error check here, because some systems can't do it and we
256      * simply don't want threads to fail because of that. */
257     pthread_attr_setscope (&attr, PTHREAD_SCOPE_SYSTEM);
258 #endif /* PTHREAD_SCOPE_SYSTEM */
259
260 #ifdef G_THREADS_IMPL_POSIX
261   posix_check_for_error (pthread_attr_setdetachstate (&attr,
262           joinable ? PTHREAD_CREATE_JOINABLE : PTHREAD_CREATE_DETACHED));
263 #endif /* G_THREADS_IMPL_POSIX */
264   
265 #ifdef HAVE_PRIORITIES
266 # ifdef G_THREADS_IMPL_POSIX
267   {
268     struct sched_param sched;
269     posix_check_for_error (pthread_attr_getschedparam (&attr, &sched));
270     sched.sched_priority = g_thread_map_priority (priority);
271     posix_check_for_error (pthread_attr_setschedparam (&attr, &sched));
272   }
273 # else /* G_THREADS_IMPL_DCE */
274   posix_check_for_error 
275     (pthread_attr_setprio (&attr, g_thread_map_priority (priority)));
276 # endif /* G_THREADS_IMPL_DCE */
277 #endif /* HAVE_PRIORITIES */
278
279   ret = pthread_create (thread, &attr, (void* (*)(void*))thread_func, arg);
280   
281 #ifdef G_THREADS_IMPL_DCE
282   if (ret == -1) 
283     ret = errno;
284   else
285     ret = 0;
286 #endif /* G_THREADS_IMPL_DCE */
287
288   posix_check_for_error (pthread_attr_destroy (&attr));
289
290   if (ret)
291     {
292       g_set_error (error, G_THREAD_ERROR, G_THREAD_ERROR_AGAIN, 
293                    "Error creating thread: %s", g_strerror (ret));
294       return;
295     }
296
297 #ifdef G_THREADS_IMPL_DCE
298   if (!joinable)
299     posix_check_for_error (pthread_detach (thread));
300 #endif /* G_THREADS_IMPL_DCE */
301 }
302
303 static void 
304 g_thread_yield_posix_impl (void)
305 {
306   POSIX_YIELD_FUNC;
307 }
308
309 static void
310 g_thread_join_posix_impl (gpointer thread)
311 {     
312   gpointer ignore;
313   posix_check_for_error (pthread_join (*(pthread_t*)thread, 
314                                        &ignore));
315 }
316
317 static void 
318 g_thread_exit_posix_impl (void) 
319 {
320   pthread_exit (NULL);
321 }
322
323 static void
324 g_thread_set_priority_posix_impl (gpointer thread, GThreadPriority priority)
325 {
326 #ifdef HAVE_PRIORITIES
327 # ifdef G_THREADS_IMPL_POSIX
328   struct sched_param sched;
329   int policy;
330   posix_check_for_error (pthread_getschedparam (*(pthread_t*)thread, 
331                                                 &policy, &sched));
332   sched.sched_priority = g_thread_map_priority (priority);
333   posix_check_for_error (pthread_setschedparam (*(pthread_t*)thread, 
334                                                 policy, &sched));
335 # else /* G_THREADS_IMPL_DCE */
336   posix_check_for_error (pthread_setprio (*(pthread_t*)thread, 
337                                           g_thread_map_priority (priority)));
338 # endif
339 #endif /* HAVE_PRIORITIES */
340 }
341
342 static void
343 g_thread_self_posix_impl (gpointer thread)
344 {
345   *(pthread_t*)thread = pthread_self();
346 }
347
348 static GThreadFunctions g_thread_functions_for_glib_use_default =
349 {
350   g_mutex_new_posix_impl,
351   (void (*)(GMutex *)) pthread_mutex_lock,
352   g_mutex_trylock_posix_impl,
353   (void (*)(GMutex *)) pthread_mutex_unlock,
354   g_mutex_free_posix_impl,
355   g_cond_new_posix_impl,
356   (void (*)(GCond *)) pthread_cond_signal,
357   (void (*)(GCond *)) pthread_cond_broadcast,
358   (void (*)(GCond *, GMutex *)) pthread_cond_wait,
359   g_cond_timed_wait_posix_impl,
360   g_cond_free_posix_impl,
361   g_private_new_posix_impl,
362   g_private_get_posix_impl,
363   g_private_set_posix_impl,
364   g_thread_create_posix_impl,
365   g_thread_yield_posix_impl,
366   g_thread_join_posix_impl,
367   g_thread_exit_posix_impl,
368   g_thread_set_priority_posix_impl,
369   g_thread_self_posix_impl
370 };