Update contrib.
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
6 * Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved.
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the
20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 * Boston, MA 02111-1307, USA.
25 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
26 * file for a list of people on the GLib Team. See the ChangeLog
27 * files for a list of changes. These files are distributed with
28 * GLib at ftp://ftp.gtk.org/pub/gtk/.
40 #ifdef HAVE_SYS_TIME_H
41 # include <sys/time.h>
51 #define posix_check_err(err, name) G_STMT_START{ \
54 g_error ("file %s: line %d (%s): error '%s' during '%s'", \
55 __FILE__, __LINE__, G_STRFUNC, \
56 g_strerror (error), name); \
59 #define posix_check_cmd(cmd) posix_check_err (posix_error (cmd), #cmd)
63 PLS(posix_check_cmd_prio_warned,gthread_posix,gboolean)
64 #define posix_check_cmd_prio_warned (*FUNCTION_NAME(posix_check_cmd_prio_warned,gthread_posix)())
66 static gboolean posix_check_cmd_prio_warned = FALSE;
68 # define posix_check_cmd_prio(cmd) G_STMT_START{ \
69 int err = posix_error (cmd); \
72 if (!posix_check_cmd_prio_warned) \
74 posix_check_cmd_prio_warned = TRUE; \
75 g_warning ("Priorities can only be changed " \
76 "(resp. increased) by root."); \
80 posix_check_err (err, #cmd); \
82 #else /* G_ENABLE_DEBUG */
83 # define posix_check_cmd_prio(cmd) G_STMT_START{ \
84 int err = posix_error (cmd); \
86 posix_check_err (err, #cmd); \
88 #endif /* G_ENABLE_DEBUG */
90 #if defined(G_THREADS_IMPL_POSIX)
91 # define posix_error(what) (what)
92 # define mutexattr_default NULL
93 # define condattr_default NULL
94 #elif defined(G_THREADS_IMPL_DCE)
95 # define posix_error(what) ((what) == -1 ? errno : 0)
96 # define pthread_key_create(a, b) pthread_keycreate (a, b)
97 # define pthread_attr_init(a) pthread_attr_create (a)
98 # define pthread_attr_destroy(a) pthread_attr_delete (a)
99 # define pthread_create(a, b, c, d) pthread_create (a, *b, c, d)
100 # define mutexattr_default (pthread_mutexattr_default)
101 # define condattr_default (pthread_condattr_default)
102 #else /* neither G_THREADS_IMPL_POSIX nor G_THREADS_IMPL_DCE are defined */
103 # error This should not happen. Contact the GLib team.
106 #if defined (POSIX_MIN_PRIORITY) && defined (POSIX_MAX_PRIORITY)
107 # define HAVE_PRIORITIES 1
110 PLS(priority_normal_value,gthread_posix,gint)
111 #define priority_normal_value (*FUNCTION_NAME(priority_normal_value,gthread_posix)())
115 static gint priority_normal_value;
117 #endif /* EMULATOR */
119 /* FreeBSD threads use different priority values from the POSIX_
120 * defines so we just set them here. The corresponding macros
121 * PTHREAD_MIN_PRIORITY and PTHREAD_MAX_PRIORITY are implied to be
122 * exported by the docs, but they aren't.
124 # define PRIORITY_LOW_VALUE 0
125 # define PRIORITY_URGENT_VALUE 31
126 # else /* !__FreeBSD__ */
127 # define PRIORITY_LOW_VALUE POSIX_MIN_PRIORITY
128 # define PRIORITY_URGENT_VALUE POSIX_MAX_PRIORITY
129 # endif /* !__FreeBSD__ */
130 # define PRIORITY_NORMAL_VALUE priority_normal_value
131 #endif /* POSIX_MIN_PRIORITY && POSIX_MAX_PRIORITY */
135 PLS(g_thread_min_stack_size ,gthread_posix,gulong)
136 #define g_thread_min_stack_size (*FUNCTION_NAME(g_thread_min_stack_size ,gthread_posix)())
140 static gulong g_thread_min_stack_size = 0;
142 #endif /* EMULATOR */
143 #define G_MUTEX_SIZE (sizeof (pthread_mutex_t))
145 #if defined(HAVE_CLOCK_GETTIME) && defined(HAVE_MONOTONIC_CLOCK)
146 #define USE_CLOCK_GETTIME 1
147 static gint posix_clock = 0;
150 #if defined(_SC_THREAD_STACK_MIN) || defined (HAVE_PRIORITIES) || defined (USE_CLOCK_GETTIME)
151 #define HAVE_G_THREAD_IMPL_INIT
153 g_thread_impl_init(void)
155 #ifdef _SC_THREAD_STACK_MIN
156 g_thread_min_stack_size = MAX (sysconf (_SC_THREAD_STACK_MIN), 0);
157 #endif /* _SC_THREAD_STACK_MIN */
158 #ifdef HAVE_PRIORITIES
159 # ifdef G_THREADS_IMPL_POSIX
161 struct sched_param sched;
163 posix_check_cmd (pthread_getschedparam (pthread_self(), &policy, &sched));
164 priority_normal_value = sched.sched_priority;
166 # else /* G_THREADS_IMPL_DCE */
167 posix_check_cmd (priority_normal_value =
168 pthread_getprio (*(pthread_t*)thread,
169 g_thread_priority_map [priority]));
171 #endif /* HAVE_PRIORITIES */
173 #ifdef USE_CLOCK_GETTIME
174 if (sysconf (_SC_MONOTONIC_CLOCK) >= 0)
175 posix_clock = CLOCK_MONOTONIC;
177 posix_clock = CLOCK_REALTIME;
180 #endif /* _SC_THREAD_STACK_MIN || HAVE_PRIORITIES */
183 g_mutex_new_posix_impl (void)
185 GMutex *result = (GMutex *) g_new (pthread_mutex_t, 1);
186 posix_check_cmd (pthread_mutex_init ((pthread_mutex_t *) result,
192 g_mutex_free_posix_impl (GMutex * mutex)
194 posix_check_cmd (pthread_mutex_destroy ((pthread_mutex_t *) mutex));
198 /* NOTE: the functions g_mutex_lock and g_mutex_unlock may not use
199 functions from gmem.c and gmessages.c; */
201 /* pthread_mutex_lock, pthread_mutex_unlock can be taken directly, as
202 signature and semantic are right, but without error check then!!!!,
203 we might want to change this therefore. */
206 g_mutex_trylock_posix_impl (GMutex * mutex)
210 result = pthread_mutex_trylock ((pthread_mutex_t *) mutex);
212 #ifdef G_THREADS_IMPL_POSIX
215 #else /* G_THREADS_IMPL_DCE */
220 posix_check_err (posix_error (result), "pthread_mutex_trylock");
225 g_cond_new_posix_impl (void)
227 GCond *result = (GCond *) g_new (pthread_cond_t, 1);
228 posix_check_cmd (pthread_cond_init ((pthread_cond_t *) result,
233 /* pthread_cond_signal, pthread_cond_broadcast and pthread_cond_wait
234 can be taken directly, as signature and semantic are right, but
235 without error check then!!!!, we might want to change this
238 #define G_NSEC_PER_SEC 1000000000
241 g_cond_timed_wait_posix_impl (GCond * cond,
242 GMutex * entered_mutex,
246 struct timespec end_time;
249 g_return_val_if_fail (cond != NULL, FALSE);
250 g_return_val_if_fail (entered_mutex != NULL, FALSE);
254 result = pthread_cond_wait ((pthread_cond_t *)cond,
255 (pthread_mutex_t *) entered_mutex);
260 end_time.tv_sec = abs_time->tv_sec;
261 end_time.tv_nsec = abs_time->tv_usec * (G_NSEC_PER_SEC / G_USEC_PER_SEC);
263 g_return_val_if_fail (end_time.tv_nsec < G_NSEC_PER_SEC, TRUE);
265 result = pthread_cond_timedwait ((pthread_cond_t *) cond,
266 (pthread_mutex_t *) entered_mutex,
268 #ifdef G_THREADS_IMPL_POSIX
269 timed_out = (result == ETIMEDOUT);
270 #else /* G_THREADS_IMPL_DCE */
271 timed_out = (result == -1) && (errno == EAGAIN);
276 posix_check_err (posix_error (result), "pthread_cond_timedwait");
282 g_cond_free_posix_impl (GCond * cond)
284 posix_check_cmd (pthread_cond_destroy ((pthread_cond_t *) cond));
289 g_private_new_posix_impl (GDestroyNotify destructor)
291 GPrivate *result = (GPrivate *) g_new (pthread_key_t, 1);
292 posix_check_cmd (pthread_key_create ((pthread_key_t *) result, destructor));
296 /* NOTE: the functions g_private_get and g_private_set may not use
297 functions from gmem.c and gmessages.c */
300 g_private_set_posix_impl (GPrivate * private_key, gpointer value)
304 pthread_setspecific (*(pthread_key_t *) private_key, value);
308 g_private_get_posix_impl (GPrivate * private_key)
312 #ifdef G_THREADS_IMPL_POSIX
313 return pthread_getspecific (*(pthread_key_t *) private_key);
314 #else /* G_THREADS_IMPL_DCE */
317 posix_check_cmd (pthread_getspecific (*(pthread_key_t *) private_key,
325 g_thread_create_posix_impl (GThreadFunc thread_func,
330 GThreadPriority priority,
337 g_return_if_fail (thread_func);
338 g_return_if_fail (priority >= G_THREAD_PRIORITY_LOW);
339 g_return_if_fail (priority <= G_THREAD_PRIORITY_URGENT);
341 posix_check_cmd (pthread_attr_init (&attr));
343 #ifdef HAVE_PTHREAD_ATTR_SETSTACKSIZE
346 stack_size = MAX (g_thread_min_stack_size, stack_size);
347 /* No error check here, because some systems can't do it and
348 * we simply don't want threads to fail because of that. */
349 pthread_attr_setstacksize (&attr, stack_size);
351 #endif /* HAVE_PTHREAD_ATTR_SETSTACKSIZE */
353 #ifdef PTHREAD_SCOPE_SYSTEM
355 /* No error check here, because some systems can't do it and we
356 * simply don't want threads to fail because of that. */
357 pthread_attr_setscope (&attr, PTHREAD_SCOPE_SYSTEM);
358 #endif /* PTHREAD_SCOPE_SYSTEM */
360 #ifdef G_THREADS_IMPL_POSIX
361 posix_check_cmd (pthread_attr_setdetachstate (&attr,
362 joinable ? PTHREAD_CREATE_JOINABLE : PTHREAD_CREATE_DETACHED));
363 #endif /* G_THREADS_IMPL_POSIX */
365 #ifdef HAVE_PRIORITIES
366 # ifdef G_THREADS_IMPL_POSIX
368 struct sched_param sched;
369 posix_check_cmd (pthread_attr_getschedparam (&attr, &sched));
370 sched.sched_priority = g_thread_priority_map [priority];
371 posix_check_cmd_prio (pthread_attr_setschedparam (&attr, &sched));
373 # else /* G_THREADS_IMPL_DCE */
375 (pthread_attr_setprio (&attr, g_thread_priority_map [priority]));
376 # endif /* G_THREADS_IMPL_DCE */
377 #endif /* HAVE_PRIORITIES */
378 ret = posix_error (pthread_create (thread, &attr,
379 (void* (*)(void*))thread_func, arg));
381 posix_check_cmd (pthread_attr_destroy (&attr));
385 g_set_error (error, G_THREAD_ERROR, G_THREAD_ERROR_AGAIN,
386 "Error creating thread: %s", g_strerror (ret));
390 posix_check_err (ret, "pthread_create");
392 #ifdef G_THREADS_IMPL_DCE
394 posix_check_cmd (pthread_detach (thread));
395 #endif /* G_THREADS_IMPL_DCE */
399 g_thread_yield_posix_impl (void)
405 g_thread_join_posix_impl (gpointer thread)
408 posix_check_cmd (pthread_join (*(pthread_t*)thread, &ignore));
412 g_thread_exit_posix_impl (void)
418 g_thread_set_priority_posix_impl (gpointer thread, GThreadPriority priority)
420 g_return_if_fail (priority >= G_THREAD_PRIORITY_LOW);
421 g_return_if_fail (priority <= G_THREAD_PRIORITY_URGENT);
422 #ifdef HAVE_PRIORITIES
423 # ifdef G_THREADS_IMPL_POSIX
425 struct sched_param sched;
427 posix_check_cmd (pthread_getschedparam (*(pthread_t*)thread, &policy,
429 sched.sched_priority = g_thread_priority_map [priority];
430 posix_check_cmd_prio (pthread_setschedparam (*(pthread_t*)thread, policy,
433 # else /* G_THREADS_IMPL_DCE */
434 posix_check_cmd_prio (pthread_setprio (*(pthread_t*)thread,
435 g_thread_priority_map [priority]));
437 #endif /* HAVE_PRIORITIES */
441 g_thread_self_posix_impl (gpointer thread)
443 *(pthread_t*)thread = pthread_self();
447 g_thread_equal_posix_impl (gpointer thread1, gpointer thread2)
449 return (pthread_equal (*(pthread_t*)thread1, *(pthread_t*)thread2) != 0);
452 #ifdef USE_CLOCK_GETTIME
458 clock_gettime (posix_clock, &tv);
460 return (guint64) tv.tv_sec * G_NSEC_PER_SEC + tv.tv_nsec;
462 static guint64 (*g_thread_gettime_impl)(void) = gettime;
464 static guint64 (*g_thread_gettime_impl)(void) = 0;
468 PLS(g_thread_functions_for_glib_use_default ,gthread_posix,GThreadFunctions)
469 #define g_thread_functions_for_glib_use_default (*FUNCTION_NAME(g_thread_functions_for_glib_use_default ,gthread_posix)())
471 static GThreadFunctions g_thread_functions_for_glib_use_default =
473 NULL,//g_mutex_new_posix_impl,
474 NULL,//(void (*)(GMutex *)) pthread_mutex_lock,
475 NULL,//g_mutex_trylock_posix_impl,
476 NULL,//(void (*)(GMutex *)) pthread_mutex_unlock,
477 NULL,//g_mutex_free_posix_impl,
478 NULL,//g_cond_new_posix_impl,
479 NULL,//(void (*)(GCond *)) pthread_cond_signal,
480 NULL,//(void (*)(GCond *)) pthread_cond_broadcast,
481 NULL,//(void (*)(GCond *, GMutex *)) pthread_cond_wait,
482 NULL,//g_cond_timed_wait_posix_impl,
483 NULL,//g_cond_free_posix_impl,
484 NULL,//g_private_new_posix_impl,
485 NULL,//g_private_get_posix_impl,
486 NULL,//g_private_set_posix_impl,
487 NULL,//g_thread_create_posix_impl,
488 NULL,//g_thread_yield_posix_impl,
489 NULL,//g_thread_join_posix_impl,
490 NULL,//g_thread_exit_posix_impl,
491 NULL,//g_thread_set_priority_posix_impl,
492 NULL,//g_thread_self_posix_impl,
493 NULL,//g_thread_equal_posix_impl
498 const GThreadFunctions g_thread_functions_for_glib_use_default_temp =
500 g_mutex_new_posix_impl,
501 (void (*)(GMutex *)) pthread_mutex_lock,
502 g_mutex_trylock_posix_impl,
503 (void (*)(GMutex *)) pthread_mutex_unlock,
504 g_mutex_free_posix_impl,
505 g_cond_new_posix_impl,
506 (void (*)(GCond *)) pthread_cond_signal,
507 (void (*)(GCond *)) pthread_cond_broadcast,
508 (void (*)(GCond *, GMutex *)) pthread_cond_wait,
509 g_cond_timed_wait_posix_impl,
510 g_cond_free_posix_impl,
511 g_private_new_posix_impl,
512 g_private_get_posix_impl,
513 g_private_set_posix_impl,
514 g_thread_create_posix_impl,
515 g_thread_yield_posix_impl,
516 g_thread_join_posix_impl,
517 g_thread_exit_posix_impl,
518 g_thread_set_priority_posix_impl,
519 g_thread_self_posix_impl,
520 g_thread_equal_posix_impl
522 #endif//__SYMBIAN32__