1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * gthread.c: posix thread system implementation
5 * Copyright 1998 Sebastian Wilhelmi; University of Karlsruhe
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.
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.
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.
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/.
37 #ifdef HAVE_SYS_TIME_H
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 )
49 #if defined(G_THREADS_IMPL_POSIX)
50 # define posix_check_for_error( what ) G_STMT_START{ \
52 if( error ) { posix_print_error( what, error ); } \
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 ); } \
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.
70 #if defined(POSIX_MIN_PRIORITY) && defined(POSIX_MAX_PRIORITY)
71 # define HAVE_PRIORITIES 1
74 gulong g_thread_min_stack_size = 0;
76 #define HAVE_G_THREAD_IMPL_INIT
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 */
90 g_mutex_new_posix_impl (void)
92 GMutex *result = (GMutex *) g_new (pthread_mutex_t, 1);
93 posix_check_for_error (pthread_mutex_init ((pthread_mutex_t *) result,
99 g_mutex_free_posix_impl (GMutex * mutex)
101 posix_check_for_error (pthread_mutex_destroy ((pthread_mutex_t *) mutex));
105 /* NOTE: the functions g_mutex_lock and g_mutex_unlock may not use
106 functions from gmem.c and gmessages.c; */
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. */
113 g_mutex_trylock_posix_impl (GMutex * mutex)
117 result = pthread_mutex_trylock ((pthread_mutex_t *) mutex);
119 #ifdef G_THREADS_IMPL_POSIX
122 #else /* G_THREADS_IMPL_DCE */
127 posix_check_for_error (result);
132 g_cond_new_posix_impl (void)
134 GCond *result = (GCond *) g_new (pthread_cond_t, 1);
135 posix_check_for_error (pthread_cond_init ((pthread_cond_t *) result,
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
145 #define G_MICROSEC 1000000
146 #define G_NANOSEC 1000000000
149 g_cond_timed_wait_posix_impl (GCond * cond,
150 GMutex * entered_mutex,
154 struct timespec end_time;
157 g_return_val_if_fail (cond != NULL, FALSE);
158 g_return_val_if_fail (entered_mutex != NULL, FALSE);
162 g_cond_wait (cond, entered_mutex);
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,
173 #ifdef G_THREADS_IMPL_POSIX
174 timed_out = (result == ETIMEDOUT);
175 #else /* G_THREADS_IMPL_DCE */
176 timed_out = (result == -1) && (errno = EAGAIN);
180 posix_check_for_error (result);
185 g_cond_free_posix_impl (GCond * cond)
187 posix_check_for_error (pthread_cond_destroy ((pthread_cond_t *) cond));
192 g_private_new_posix_impl (GDestroyNotify destructor)
194 GPrivate *result = (GPrivate *) g_new (pthread_key_t, 1);
195 posix_check_for_error (pthread_key_create ((pthread_key_t *) result,
200 /* NOTE: the functions g_private_get and g_private_set may not use
201 functions from gmem.c and gmessages.c */
204 g_private_set_posix_impl (GPrivate * private_key, gpointer value)
208 pthread_setspecific (*(pthread_key_t *) private_key, value);
212 g_private_get_posix_impl (GPrivate * private_key)
216 #ifdef G_THREADS_IMPL_POSIX
217 return pthread_getspecific (*(pthread_key_t *) private_key);
218 #else /* G_THREADS_IMPL_DCE */
221 posix_check_for_error (pthread_getspecific (*(pthread_key_t *)
222 private_key, &data));
229 g_thread_create_posix_impl (GThreadFunc thread_func,
234 GThreadPriority priority,
239 g_return_if_fail (thread_func);
241 posix_check_for_error (pthread_attr_init (&attr));
243 #ifdef HAVE_PTHREAD_ATTR_SETSTACKSIZE
246 stack_size = MAX (g_thread_min_stack_size, stack_size);
247 posix_check_for_error (pthread_attr_setstacksize (&attr, stack_size));
249 #endif /* HAVE_PTHREAD_ATTR_SETSTACKSIZE */
251 #ifdef PTHREAD_SCOPE_SYSTEM
253 /* No error check here, because some systems can't do it and we
254 * simply don't want threads to fail because of that. */
255 pthread_attr_setscope (&attr, PTHREAD_SCOPE_SYSTEM);
256 #endif /* PTHREAD_SCOPE_SYSTEM */
258 #ifdef G_THREADS_IMPL_POSIX
259 posix_check_for_error (pthread_attr_setdetachstate (&attr,
260 joinable ? PTHREAD_CREATE_JOINABLE : PTHREAD_CREATE_DETACHED));
261 #endif /* G_THREADS_IMPL_POSIX */
263 #ifdef HAVE_PRIORITIES
264 # ifdef G_THREADS_IMPL_POSIX
266 struct sched_param sched;
267 posix_check_for_error (pthread_attr_getschedparam (&attr, &sched));
268 sched.sched_priority = g_thread_map_priority (priority);
269 posix_check_for_error (pthread_attr_setschedparam (&attr, &sched));
271 # else /* G_THREADS_IMPL_DCE */
272 posix_check_for_error
273 (pthread_attr_setprio (&attr, g_thread_map_priority (priority)));
274 # endif /* G_THREADS_IMPL_DCE */
275 #endif /* HAVE_PRIORITIES */
277 posix_check_for_error (pthread_create (thread, &attr,
278 (void* (*)(void*))thread_func,
281 posix_check_for_error (pthread_attr_destroy (&attr));
283 #ifdef G_THREADS_IMPL_DCE
285 posix_check_for_error (pthread_detach (thread));
286 #endif /* G_THREADS_IMPL_DCE */
290 g_thread_yield_posix_impl (void)
296 g_thread_join_posix_impl (gpointer thread)
299 posix_check_for_error (pthread_join (*(pthread_t*)thread,
304 g_thread_exit_posix_impl (void)
310 g_thread_set_priority_posix_impl (gpointer thread, GThreadPriority priority)
312 #ifdef HAVE_PRIORITIES
313 # ifdef G_THREADS_IMPL_POSIX
314 struct sched_param sched;
316 posix_check_for_error (pthread_getschedparam (*(pthread_t*)thread,
318 sched.sched_priority = g_thread_map_priority (priority);
319 posix_check_for_error (pthread_setschedparam (*(pthread_t*)thread,
321 # else /* G_THREADS_IMPL_DCE */
322 posix_check_for_error (pthread_setprio (*(pthread_t*)thread,
323 g_thread_map_priority (priority)));
325 #endif /* HAVE_PRIORITIES */
329 g_thread_self_posix_impl (gpointer thread)
331 *(pthread_t*)thread = pthread_self();
334 static GThreadFunctions g_thread_functions_for_glib_use_default =
336 g_mutex_new_posix_impl,
337 (void (*)(GMutex *)) pthread_mutex_lock,
338 g_mutex_trylock_posix_impl,
339 (void (*)(GMutex *)) pthread_mutex_unlock,
340 g_mutex_free_posix_impl,
341 g_cond_new_posix_impl,
342 (void (*)(GCond *)) pthread_cond_signal,
343 (void (*)(GCond *)) pthread_cond_broadcast,
344 (void (*)(GCond *, GMutex *)) pthread_cond_wait,
345 g_cond_timed_wait_posix_impl,
346 g_cond_free_posix_impl,
347 g_private_new_posix_impl,
348 g_private_get_posix_impl,
349 g_private_set_posix_impl,
350 g_thread_create_posix_impl,
351 g_thread_yield_posix_impl,
352 g_thread_join_posix_impl,
353 g_thread_exit_posix_impl,
354 g_thread_set_priority_posix_impl,
355 g_thread_self_posix_impl