sl@0
|
1 |
/* GLIB - Library of useful routines for C programming
|
sl@0
|
2 |
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
sl@0
|
3 |
*
|
sl@0
|
4 |
* gthread.c: posix thread system implementation
|
sl@0
|
5 |
* Copyright 1998 Sebastian Wilhelmi; University of Karlsruhe
|
sl@0
|
6 |
* Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved.
|
sl@0
|
7 |
*
|
sl@0
|
8 |
* This library is free software; you can redistribute it and/or
|
sl@0
|
9 |
* modify it under the terms of the GNU Lesser General Public
|
sl@0
|
10 |
* License as published by the Free Software Foundation; either
|
sl@0
|
11 |
* version 2 of the License, or (at your option) any later version.
|
sl@0
|
12 |
*
|
sl@0
|
13 |
* This library is distributed in the hope that it will be useful,
|
sl@0
|
14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
sl@0
|
16 |
* Lesser General Public License for more details.
|
sl@0
|
17 |
*
|
sl@0
|
18 |
* You should have received a copy of the GNU Lesser General Public
|
sl@0
|
19 |
* License along with this library; if not, write to the
|
sl@0
|
20 |
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
sl@0
|
21 |
* Boston, MA 02111-1307, USA.
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
/*
|
sl@0
|
25 |
* Modified by the GLib Team and others 1997-2000. See the AUTHORS
|
sl@0
|
26 |
* file for a list of people on the GLib Team. See the ChangeLog
|
sl@0
|
27 |
* files for a list of changes. These files are distributed with
|
sl@0
|
28 |
* GLib at ftp://ftp.gtk.org/pub/gtk/.
|
sl@0
|
29 |
*/
|
sl@0
|
30 |
|
sl@0
|
31 |
/*
|
sl@0
|
32 |
* MT safe
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
|
sl@0
|
35 |
#include "config.h"
|
sl@0
|
36 |
|
sl@0
|
37 |
#include <pthread.h>
|
sl@0
|
38 |
#include <errno.h>
|
sl@0
|
39 |
#include <stdlib.h>
|
sl@0
|
40 |
#ifdef HAVE_SYS_TIME_H
|
sl@0
|
41 |
# include <sys/time.h>
|
sl@0
|
42 |
#endif
|
sl@0
|
43 |
#ifdef HAVE_UNISTD_H
|
sl@0
|
44 |
# include <unistd.h>
|
sl@0
|
45 |
#endif
|
sl@0
|
46 |
|
sl@0
|
47 |
#ifdef HAVE_SCHED_H
|
sl@0
|
48 |
#include <sched.h>
|
sl@0
|
49 |
#endif
|
sl@0
|
50 |
|
sl@0
|
51 |
#define posix_check_err(err, name) G_STMT_START{ \
|
sl@0
|
52 |
int error = (err); \
|
sl@0
|
53 |
if (error) \
|
sl@0
|
54 |
g_error ("file %s: line %d (%s): error '%s' during '%s'", \
|
sl@0
|
55 |
__FILE__, __LINE__, G_STRFUNC, \
|
sl@0
|
56 |
g_strerror (error), name); \
|
sl@0
|
57 |
}G_STMT_END
|
sl@0
|
58 |
|
sl@0
|
59 |
#define posix_check_cmd(cmd) posix_check_err (posix_error (cmd), #cmd)
|
sl@0
|
60 |
|
sl@0
|
61 |
#ifdef G_ENABLE_DEBUG
|
sl@0
|
62 |
#if EMULATOR
|
sl@0
|
63 |
PLS(posix_check_cmd_prio_warned,gthread_posix,gboolean)
|
sl@0
|
64 |
#define posix_check_cmd_prio_warned (*FUNCTION_NAME(posix_check_cmd_prio_warned,gthread_posix)())
|
sl@0
|
65 |
#else
|
sl@0
|
66 |
static gboolean posix_check_cmd_prio_warned = FALSE;
|
sl@0
|
67 |
#endif /* EMULATOR */
|
sl@0
|
68 |
# define posix_check_cmd_prio(cmd) G_STMT_START{ \
|
sl@0
|
69 |
int err = posix_error (cmd); \
|
sl@0
|
70 |
if (err == EPERM) \
|
sl@0
|
71 |
{ \
|
sl@0
|
72 |
if (!posix_check_cmd_prio_warned) \
|
sl@0
|
73 |
{ \
|
sl@0
|
74 |
posix_check_cmd_prio_warned = TRUE; \
|
sl@0
|
75 |
g_warning ("Priorities can only be changed " \
|
sl@0
|
76 |
"(resp. increased) by root."); \
|
sl@0
|
77 |
} \
|
sl@0
|
78 |
} \
|
sl@0
|
79 |
else \
|
sl@0
|
80 |
posix_check_err (err, #cmd); \
|
sl@0
|
81 |
}G_STMT_END
|
sl@0
|
82 |
#else /* G_ENABLE_DEBUG */
|
sl@0
|
83 |
# define posix_check_cmd_prio(cmd) G_STMT_START{ \
|
sl@0
|
84 |
int err = posix_error (cmd); \
|
sl@0
|
85 |
if (err != EPERM) \
|
sl@0
|
86 |
posix_check_err (err, #cmd); \
|
sl@0
|
87 |
}G_STMT_END
|
sl@0
|
88 |
#endif /* G_ENABLE_DEBUG */
|
sl@0
|
89 |
|
sl@0
|
90 |
#if defined(G_THREADS_IMPL_POSIX)
|
sl@0
|
91 |
# define posix_error(what) (what)
|
sl@0
|
92 |
# define mutexattr_default NULL
|
sl@0
|
93 |
# define condattr_default NULL
|
sl@0
|
94 |
#elif defined(G_THREADS_IMPL_DCE)
|
sl@0
|
95 |
# define posix_error(what) ((what) == -1 ? errno : 0)
|
sl@0
|
96 |
# define pthread_key_create(a, b) pthread_keycreate (a, b)
|
sl@0
|
97 |
# define pthread_attr_init(a) pthread_attr_create (a)
|
sl@0
|
98 |
# define pthread_attr_destroy(a) pthread_attr_delete (a)
|
sl@0
|
99 |
# define pthread_create(a, b, c, d) pthread_create (a, *b, c, d)
|
sl@0
|
100 |
# define mutexattr_default (pthread_mutexattr_default)
|
sl@0
|
101 |
# define condattr_default (pthread_condattr_default)
|
sl@0
|
102 |
#else /* neither G_THREADS_IMPL_POSIX nor G_THREADS_IMPL_DCE are defined */
|
sl@0
|
103 |
# error This should not happen. Contact the GLib team.
|
sl@0
|
104 |
#endif
|
sl@0
|
105 |
|
sl@0
|
106 |
#if defined (POSIX_MIN_PRIORITY) && defined (POSIX_MAX_PRIORITY)
|
sl@0
|
107 |
# define HAVE_PRIORITIES 1
|
sl@0
|
108 |
#if EMULATOR
|
sl@0
|
109 |
|
sl@0
|
110 |
PLS(priority_normal_value,gthread_posix,gint)
|
sl@0
|
111 |
#define priority_normal_value (*FUNCTION_NAME(priority_normal_value,gthread_posix)())
|
sl@0
|
112 |
|
sl@0
|
113 |
#else
|
sl@0
|
114 |
|
sl@0
|
115 |
static gint priority_normal_value;
|
sl@0
|
116 |
|
sl@0
|
117 |
#endif /* EMULATOR */
|
sl@0
|
118 |
# ifdef __FreeBSD__
|
sl@0
|
119 |
/* FreeBSD threads use different priority values from the POSIX_
|
sl@0
|
120 |
* defines so we just set them here. The corresponding macros
|
sl@0
|
121 |
* PTHREAD_MIN_PRIORITY and PTHREAD_MAX_PRIORITY are implied to be
|
sl@0
|
122 |
* exported by the docs, but they aren't.
|
sl@0
|
123 |
*/
|
sl@0
|
124 |
# define PRIORITY_LOW_VALUE 0
|
sl@0
|
125 |
# define PRIORITY_URGENT_VALUE 31
|
sl@0
|
126 |
# else /* !__FreeBSD__ */
|
sl@0
|
127 |
# define PRIORITY_LOW_VALUE POSIX_MIN_PRIORITY
|
sl@0
|
128 |
# define PRIORITY_URGENT_VALUE POSIX_MAX_PRIORITY
|
sl@0
|
129 |
# endif /* !__FreeBSD__ */
|
sl@0
|
130 |
# define PRIORITY_NORMAL_VALUE priority_normal_value
|
sl@0
|
131 |
#endif /* POSIX_MIN_PRIORITY && POSIX_MAX_PRIORITY */
|
sl@0
|
132 |
|
sl@0
|
133 |
#if EMULATOR
|
sl@0
|
134 |
|
sl@0
|
135 |
PLS(g_thread_min_stack_size ,gthread_posix,gulong)
|
sl@0
|
136 |
#define g_thread_min_stack_size (*FUNCTION_NAME(g_thread_min_stack_size ,gthread_posix)())
|
sl@0
|
137 |
|
sl@0
|
138 |
#else
|
sl@0
|
139 |
|
sl@0
|
140 |
static gulong g_thread_min_stack_size = 0;
|
sl@0
|
141 |
|
sl@0
|
142 |
#endif /* EMULATOR */
|
sl@0
|
143 |
#define G_MUTEX_SIZE (sizeof (pthread_mutex_t))
|
sl@0
|
144 |
|
sl@0
|
145 |
#if defined(HAVE_CLOCK_GETTIME) && defined(HAVE_MONOTONIC_CLOCK)
|
sl@0
|
146 |
#define USE_CLOCK_GETTIME 1
|
sl@0
|
147 |
static gint posix_clock = 0;
|
sl@0
|
148 |
#endif
|
sl@0
|
149 |
|
sl@0
|
150 |
#if defined(_SC_THREAD_STACK_MIN) || defined (HAVE_PRIORITIES) || defined (USE_CLOCK_GETTIME)
|
sl@0
|
151 |
#define HAVE_G_THREAD_IMPL_INIT
|
sl@0
|
152 |
static void
|
sl@0
|
153 |
g_thread_impl_init(void)
|
sl@0
|
154 |
{
|
sl@0
|
155 |
#ifdef _SC_THREAD_STACK_MIN
|
sl@0
|
156 |
g_thread_min_stack_size = MAX (sysconf (_SC_THREAD_STACK_MIN), 0);
|
sl@0
|
157 |
#endif /* _SC_THREAD_STACK_MIN */
|
sl@0
|
158 |
#ifdef HAVE_PRIORITIES
|
sl@0
|
159 |
# ifdef G_THREADS_IMPL_POSIX
|
sl@0
|
160 |
{
|
sl@0
|
161 |
struct sched_param sched;
|
sl@0
|
162 |
int policy;
|
sl@0
|
163 |
posix_check_cmd (pthread_getschedparam (pthread_self(), &policy, &sched));
|
sl@0
|
164 |
priority_normal_value = sched.sched_priority;
|
sl@0
|
165 |
}
|
sl@0
|
166 |
# else /* G_THREADS_IMPL_DCE */
|
sl@0
|
167 |
posix_check_cmd (priority_normal_value =
|
sl@0
|
168 |
pthread_getprio (*(pthread_t*)thread,
|
sl@0
|
169 |
g_thread_priority_map [priority]));
|
sl@0
|
170 |
# endif
|
sl@0
|
171 |
#endif /* HAVE_PRIORITIES */
|
sl@0
|
172 |
|
sl@0
|
173 |
#ifdef USE_CLOCK_GETTIME
|
sl@0
|
174 |
if (sysconf (_SC_MONOTONIC_CLOCK) >= 0)
|
sl@0
|
175 |
posix_clock = CLOCK_MONOTONIC;
|
sl@0
|
176 |
else
|
sl@0
|
177 |
posix_clock = CLOCK_REALTIME;
|
sl@0
|
178 |
#endif
|
sl@0
|
179 |
}
|
sl@0
|
180 |
#endif /* _SC_THREAD_STACK_MIN || HAVE_PRIORITIES */
|
sl@0
|
181 |
|
sl@0
|
182 |
static GMutex *
|
sl@0
|
183 |
g_mutex_new_posix_impl (void)
|
sl@0
|
184 |
{
|
sl@0
|
185 |
GMutex *result = (GMutex *) g_new (pthread_mutex_t, 1);
|
sl@0
|
186 |
posix_check_cmd (pthread_mutex_init ((pthread_mutex_t *) result,
|
sl@0
|
187 |
mutexattr_default));
|
sl@0
|
188 |
return result;
|
sl@0
|
189 |
}
|
sl@0
|
190 |
|
sl@0
|
191 |
static void
|
sl@0
|
192 |
g_mutex_free_posix_impl (GMutex * mutex)
|
sl@0
|
193 |
{
|
sl@0
|
194 |
posix_check_cmd (pthread_mutex_destroy ((pthread_mutex_t *) mutex));
|
sl@0
|
195 |
g_free (mutex);
|
sl@0
|
196 |
}
|
sl@0
|
197 |
|
sl@0
|
198 |
/* NOTE: the functions g_mutex_lock and g_mutex_unlock may not use
|
sl@0
|
199 |
functions from gmem.c and gmessages.c; */
|
sl@0
|
200 |
|
sl@0
|
201 |
/* pthread_mutex_lock, pthread_mutex_unlock can be taken directly, as
|
sl@0
|
202 |
signature and semantic are right, but without error check then!!!!,
|
sl@0
|
203 |
we might want to change this therefore. */
|
sl@0
|
204 |
|
sl@0
|
205 |
static gboolean
|
sl@0
|
206 |
g_mutex_trylock_posix_impl (GMutex * mutex)
|
sl@0
|
207 |
{
|
sl@0
|
208 |
int result;
|
sl@0
|
209 |
|
sl@0
|
210 |
result = pthread_mutex_trylock ((pthread_mutex_t *) mutex);
|
sl@0
|
211 |
|
sl@0
|
212 |
#ifdef G_THREADS_IMPL_POSIX
|
sl@0
|
213 |
if (result == EBUSY)
|
sl@0
|
214 |
return FALSE;
|
sl@0
|
215 |
#else /* G_THREADS_IMPL_DCE */
|
sl@0
|
216 |
if (result == 0)
|
sl@0
|
217 |
return FALSE;
|
sl@0
|
218 |
#endif
|
sl@0
|
219 |
|
sl@0
|
220 |
posix_check_err (posix_error (result), "pthread_mutex_trylock");
|
sl@0
|
221 |
return TRUE;
|
sl@0
|
222 |
}
|
sl@0
|
223 |
|
sl@0
|
224 |
static GCond *
|
sl@0
|
225 |
g_cond_new_posix_impl (void)
|
sl@0
|
226 |
{
|
sl@0
|
227 |
GCond *result = (GCond *) g_new (pthread_cond_t, 1);
|
sl@0
|
228 |
posix_check_cmd (pthread_cond_init ((pthread_cond_t *) result,
|
sl@0
|
229 |
condattr_default));
|
sl@0
|
230 |
return result;
|
sl@0
|
231 |
}
|
sl@0
|
232 |
|
sl@0
|
233 |
/* pthread_cond_signal, pthread_cond_broadcast and pthread_cond_wait
|
sl@0
|
234 |
can be taken directly, as signature and semantic are right, but
|
sl@0
|
235 |
without error check then!!!!, we might want to change this
|
sl@0
|
236 |
therefore. */
|
sl@0
|
237 |
|
sl@0
|
238 |
#define G_NSEC_PER_SEC 1000000000
|
sl@0
|
239 |
|
sl@0
|
240 |
static gboolean
|
sl@0
|
241 |
g_cond_timed_wait_posix_impl (GCond * cond,
|
sl@0
|
242 |
GMutex * entered_mutex,
|
sl@0
|
243 |
GTimeVal * abs_time)
|
sl@0
|
244 |
{
|
sl@0
|
245 |
int result;
|
sl@0
|
246 |
struct timespec end_time;
|
sl@0
|
247 |
gboolean timed_out;
|
sl@0
|
248 |
|
sl@0
|
249 |
g_return_val_if_fail (cond != NULL, FALSE);
|
sl@0
|
250 |
g_return_val_if_fail (entered_mutex != NULL, FALSE);
|
sl@0
|
251 |
|
sl@0
|
252 |
if (!abs_time)
|
sl@0
|
253 |
{
|
sl@0
|
254 |
result = pthread_cond_wait ((pthread_cond_t *)cond,
|
sl@0
|
255 |
(pthread_mutex_t *) entered_mutex);
|
sl@0
|
256 |
timed_out = FALSE;
|
sl@0
|
257 |
}
|
sl@0
|
258 |
else
|
sl@0
|
259 |
{
|
sl@0
|
260 |
end_time.tv_sec = abs_time->tv_sec;
|
sl@0
|
261 |
end_time.tv_nsec = abs_time->tv_usec * (G_NSEC_PER_SEC / G_USEC_PER_SEC);
|
sl@0
|
262 |
|
sl@0
|
263 |
g_return_val_if_fail (end_time.tv_nsec < G_NSEC_PER_SEC, TRUE);
|
sl@0
|
264 |
|
sl@0
|
265 |
result = pthread_cond_timedwait ((pthread_cond_t *) cond,
|
sl@0
|
266 |
(pthread_mutex_t *) entered_mutex,
|
sl@0
|
267 |
&end_time);
|
sl@0
|
268 |
#ifdef G_THREADS_IMPL_POSIX
|
sl@0
|
269 |
timed_out = (result == ETIMEDOUT);
|
sl@0
|
270 |
#else /* G_THREADS_IMPL_DCE */
|
sl@0
|
271 |
timed_out = (result == -1) && (errno == EAGAIN);
|
sl@0
|
272 |
#endif
|
sl@0
|
273 |
}
|
sl@0
|
274 |
|
sl@0
|
275 |
if (!timed_out)
|
sl@0
|
276 |
posix_check_err (posix_error (result), "pthread_cond_timedwait");
|
sl@0
|
277 |
|
sl@0
|
278 |
return !timed_out;
|
sl@0
|
279 |
}
|
sl@0
|
280 |
|
sl@0
|
281 |
static void
|
sl@0
|
282 |
g_cond_free_posix_impl (GCond * cond)
|
sl@0
|
283 |
{
|
sl@0
|
284 |
posix_check_cmd (pthread_cond_destroy ((pthread_cond_t *) cond));
|
sl@0
|
285 |
g_free (cond);
|
sl@0
|
286 |
}
|
sl@0
|
287 |
|
sl@0
|
288 |
static GPrivate *
|
sl@0
|
289 |
g_private_new_posix_impl (GDestroyNotify destructor)
|
sl@0
|
290 |
{
|
sl@0
|
291 |
GPrivate *result = (GPrivate *) g_new (pthread_key_t, 1);
|
sl@0
|
292 |
posix_check_cmd (pthread_key_create ((pthread_key_t *) result, destructor));
|
sl@0
|
293 |
return result;
|
sl@0
|
294 |
}
|
sl@0
|
295 |
|
sl@0
|
296 |
/* NOTE: the functions g_private_get and g_private_set may not use
|
sl@0
|
297 |
functions from gmem.c and gmessages.c */
|
sl@0
|
298 |
|
sl@0
|
299 |
static void
|
sl@0
|
300 |
g_private_set_posix_impl (GPrivate * private_key, gpointer value)
|
sl@0
|
301 |
{
|
sl@0
|
302 |
if (!private_key)
|
sl@0
|
303 |
return;
|
sl@0
|
304 |
pthread_setspecific (*(pthread_key_t *) private_key, value);
|
sl@0
|
305 |
}
|
sl@0
|
306 |
|
sl@0
|
307 |
static gpointer
|
sl@0
|
308 |
g_private_get_posix_impl (GPrivate * private_key)
|
sl@0
|
309 |
{
|
sl@0
|
310 |
if (!private_key)
|
sl@0
|
311 |
return NULL;
|
sl@0
|
312 |
#ifdef G_THREADS_IMPL_POSIX
|
sl@0
|
313 |
return pthread_getspecific (*(pthread_key_t *) private_key);
|
sl@0
|
314 |
#else /* G_THREADS_IMPL_DCE */
|
sl@0
|
315 |
{
|
sl@0
|
316 |
void* data;
|
sl@0
|
317 |
posix_check_cmd (pthread_getspecific (*(pthread_key_t *) private_key,
|
sl@0
|
318 |
&data));
|
sl@0
|
319 |
return data;
|
sl@0
|
320 |
}
|
sl@0
|
321 |
#endif
|
sl@0
|
322 |
}
|
sl@0
|
323 |
|
sl@0
|
324 |
static void
|
sl@0
|
325 |
g_thread_create_posix_impl (GThreadFunc thread_func,
|
sl@0
|
326 |
gpointer arg,
|
sl@0
|
327 |
gulong stack_size,
|
sl@0
|
328 |
gboolean joinable,
|
sl@0
|
329 |
gboolean bound,
|
sl@0
|
330 |
GThreadPriority priority,
|
sl@0
|
331 |
gpointer thread,
|
sl@0
|
332 |
GError **error)
|
sl@0
|
333 |
{
|
sl@0
|
334 |
pthread_attr_t attr;
|
sl@0
|
335 |
gint ret;
|
sl@0
|
336 |
|
sl@0
|
337 |
g_return_if_fail (thread_func);
|
sl@0
|
338 |
g_return_if_fail (priority >= G_THREAD_PRIORITY_LOW);
|
sl@0
|
339 |
g_return_if_fail (priority <= G_THREAD_PRIORITY_URGENT);
|
sl@0
|
340 |
|
sl@0
|
341 |
posix_check_cmd (pthread_attr_init (&attr));
|
sl@0
|
342 |
|
sl@0
|
343 |
#ifdef HAVE_PTHREAD_ATTR_SETSTACKSIZE
|
sl@0
|
344 |
if (stack_size)
|
sl@0
|
345 |
{
|
sl@0
|
346 |
stack_size = MAX (g_thread_min_stack_size, stack_size);
|
sl@0
|
347 |
/* No error check here, because some systems can't do it and
|
sl@0
|
348 |
* we simply don't want threads to fail because of that. */
|
sl@0
|
349 |
pthread_attr_setstacksize (&attr, stack_size);
|
sl@0
|
350 |
}
|
sl@0
|
351 |
#endif /* HAVE_PTHREAD_ATTR_SETSTACKSIZE */
|
sl@0
|
352 |
|
sl@0
|
353 |
#ifdef PTHREAD_SCOPE_SYSTEM
|
sl@0
|
354 |
if (bound)
|
sl@0
|
355 |
/* No error check here, because some systems can't do it and we
|
sl@0
|
356 |
* simply don't want threads to fail because of that. */
|
sl@0
|
357 |
pthread_attr_setscope (&attr, PTHREAD_SCOPE_SYSTEM);
|
sl@0
|
358 |
#endif /* PTHREAD_SCOPE_SYSTEM */
|
sl@0
|
359 |
|
sl@0
|
360 |
#ifdef G_THREADS_IMPL_POSIX
|
sl@0
|
361 |
posix_check_cmd (pthread_attr_setdetachstate (&attr,
|
sl@0
|
362 |
joinable ? PTHREAD_CREATE_JOINABLE : PTHREAD_CREATE_DETACHED));
|
sl@0
|
363 |
#endif /* G_THREADS_IMPL_POSIX */
|
sl@0
|
364 |
|
sl@0
|
365 |
#ifdef HAVE_PRIORITIES
|
sl@0
|
366 |
# ifdef G_THREADS_IMPL_POSIX
|
sl@0
|
367 |
{
|
sl@0
|
368 |
struct sched_param sched;
|
sl@0
|
369 |
posix_check_cmd (pthread_attr_getschedparam (&attr, &sched));
|
sl@0
|
370 |
sched.sched_priority = g_thread_priority_map [priority];
|
sl@0
|
371 |
posix_check_cmd_prio (pthread_attr_setschedparam (&attr, &sched));
|
sl@0
|
372 |
}
|
sl@0
|
373 |
# else /* G_THREADS_IMPL_DCE */
|
sl@0
|
374 |
posix_check_cmd_prio
|
sl@0
|
375 |
(pthread_attr_setprio (&attr, g_thread_priority_map [priority]));
|
sl@0
|
376 |
# endif /* G_THREADS_IMPL_DCE */
|
sl@0
|
377 |
#endif /* HAVE_PRIORITIES */
|
sl@0
|
378 |
ret = posix_error (pthread_create (thread, &attr,
|
sl@0
|
379 |
(void* (*)(void*))thread_func, arg));
|
sl@0
|
380 |
|
sl@0
|
381 |
posix_check_cmd (pthread_attr_destroy (&attr));
|
sl@0
|
382 |
|
sl@0
|
383 |
if (ret == EAGAIN)
|
sl@0
|
384 |
{
|
sl@0
|
385 |
g_set_error (error, G_THREAD_ERROR, G_THREAD_ERROR_AGAIN,
|
sl@0
|
386 |
"Error creating thread: %s", g_strerror (ret));
|
sl@0
|
387 |
return;
|
sl@0
|
388 |
}
|
sl@0
|
389 |
|
sl@0
|
390 |
posix_check_err (ret, "pthread_create");
|
sl@0
|
391 |
|
sl@0
|
392 |
#ifdef G_THREADS_IMPL_DCE
|
sl@0
|
393 |
if (!joinable)
|
sl@0
|
394 |
posix_check_cmd (pthread_detach (thread));
|
sl@0
|
395 |
#endif /* G_THREADS_IMPL_DCE */
|
sl@0
|
396 |
}
|
sl@0
|
397 |
|
sl@0
|
398 |
static void
|
sl@0
|
399 |
g_thread_yield_posix_impl (void)
|
sl@0
|
400 |
{
|
sl@0
|
401 |
POSIX_YIELD_FUNC;
|
sl@0
|
402 |
}
|
sl@0
|
403 |
|
sl@0
|
404 |
static void
|
sl@0
|
405 |
g_thread_join_posix_impl (gpointer thread)
|
sl@0
|
406 |
{
|
sl@0
|
407 |
gpointer ignore;
|
sl@0
|
408 |
posix_check_cmd (pthread_join (*(pthread_t*)thread, &ignore));
|
sl@0
|
409 |
}
|
sl@0
|
410 |
|
sl@0
|
411 |
static void
|
sl@0
|
412 |
g_thread_exit_posix_impl (void)
|
sl@0
|
413 |
{
|
sl@0
|
414 |
pthread_exit (NULL);
|
sl@0
|
415 |
}
|
sl@0
|
416 |
|
sl@0
|
417 |
static void
|
sl@0
|
418 |
g_thread_set_priority_posix_impl (gpointer thread, GThreadPriority priority)
|
sl@0
|
419 |
{
|
sl@0
|
420 |
g_return_if_fail (priority >= G_THREAD_PRIORITY_LOW);
|
sl@0
|
421 |
g_return_if_fail (priority <= G_THREAD_PRIORITY_URGENT);
|
sl@0
|
422 |
#ifdef HAVE_PRIORITIES
|
sl@0
|
423 |
# ifdef G_THREADS_IMPL_POSIX
|
sl@0
|
424 |
{
|
sl@0
|
425 |
struct sched_param sched;
|
sl@0
|
426 |
int policy;
|
sl@0
|
427 |
posix_check_cmd (pthread_getschedparam (*(pthread_t*)thread, &policy,
|
sl@0
|
428 |
&sched));
|
sl@0
|
429 |
sched.sched_priority = g_thread_priority_map [priority];
|
sl@0
|
430 |
posix_check_cmd_prio (pthread_setschedparam (*(pthread_t*)thread, policy,
|
sl@0
|
431 |
&sched));
|
sl@0
|
432 |
}
|
sl@0
|
433 |
# else /* G_THREADS_IMPL_DCE */
|
sl@0
|
434 |
posix_check_cmd_prio (pthread_setprio (*(pthread_t*)thread,
|
sl@0
|
435 |
g_thread_priority_map [priority]));
|
sl@0
|
436 |
# endif
|
sl@0
|
437 |
#endif /* HAVE_PRIORITIES */
|
sl@0
|
438 |
}
|
sl@0
|
439 |
|
sl@0
|
440 |
static void
|
sl@0
|
441 |
g_thread_self_posix_impl (gpointer thread)
|
sl@0
|
442 |
{
|
sl@0
|
443 |
*(pthread_t*)thread = pthread_self();
|
sl@0
|
444 |
}
|
sl@0
|
445 |
|
sl@0
|
446 |
static gboolean
|
sl@0
|
447 |
g_thread_equal_posix_impl (gpointer thread1, gpointer thread2)
|
sl@0
|
448 |
{
|
sl@0
|
449 |
return (pthread_equal (*(pthread_t*)thread1, *(pthread_t*)thread2) != 0);
|
sl@0
|
450 |
}
|
sl@0
|
451 |
|
sl@0
|
452 |
#ifdef USE_CLOCK_GETTIME
|
sl@0
|
453 |
static guint64
|
sl@0
|
454 |
gettime (void)
|
sl@0
|
455 |
{
|
sl@0
|
456 |
struct timespec tv;
|
sl@0
|
457 |
|
sl@0
|
458 |
clock_gettime (posix_clock, &tv);
|
sl@0
|
459 |
|
sl@0
|
460 |
return (guint64) tv.tv_sec * G_NSEC_PER_SEC + tv.tv_nsec;
|
sl@0
|
461 |
}
|
sl@0
|
462 |
static guint64 (*g_thread_gettime_impl)(void) = gettime;
|
sl@0
|
463 |
#else
|
sl@0
|
464 |
static guint64 (*g_thread_gettime_impl)(void) = 0;
|
sl@0
|
465 |
#endif
|
sl@0
|
466 |
|
sl@0
|
467 |
#if EMULATOR
|
sl@0
|
468 |
PLS(g_thread_functions_for_glib_use_default ,gthread_posix,GThreadFunctions)
|
sl@0
|
469 |
#define g_thread_functions_for_glib_use_default (*FUNCTION_NAME(g_thread_functions_for_glib_use_default ,gthread_posix)())
|
sl@0
|
470 |
#else
|
sl@0
|
471 |
static GThreadFunctions g_thread_functions_for_glib_use_default =
|
sl@0
|
472 |
{
|
sl@0
|
473 |
NULL,//g_mutex_new_posix_impl,
|
sl@0
|
474 |
NULL,//(void (*)(GMutex *)) pthread_mutex_lock,
|
sl@0
|
475 |
NULL,//g_mutex_trylock_posix_impl,
|
sl@0
|
476 |
NULL,//(void (*)(GMutex *)) pthread_mutex_unlock,
|
sl@0
|
477 |
NULL,//g_mutex_free_posix_impl,
|
sl@0
|
478 |
NULL,//g_cond_new_posix_impl,
|
sl@0
|
479 |
NULL,//(void (*)(GCond *)) pthread_cond_signal,
|
sl@0
|
480 |
NULL,//(void (*)(GCond *)) pthread_cond_broadcast,
|
sl@0
|
481 |
NULL,//(void (*)(GCond *, GMutex *)) pthread_cond_wait,
|
sl@0
|
482 |
NULL,//g_cond_timed_wait_posix_impl,
|
sl@0
|
483 |
NULL,//g_cond_free_posix_impl,
|
sl@0
|
484 |
NULL,//g_private_new_posix_impl,
|
sl@0
|
485 |
NULL,//g_private_get_posix_impl,
|
sl@0
|
486 |
NULL,//g_private_set_posix_impl,
|
sl@0
|
487 |
NULL,//g_thread_create_posix_impl,
|
sl@0
|
488 |
NULL,//g_thread_yield_posix_impl,
|
sl@0
|
489 |
NULL,//g_thread_join_posix_impl,
|
sl@0
|
490 |
NULL,//g_thread_exit_posix_impl,
|
sl@0
|
491 |
NULL,//g_thread_set_priority_posix_impl,
|
sl@0
|
492 |
NULL,//g_thread_self_posix_impl,
|
sl@0
|
493 |
NULL,//g_thread_equal_posix_impl
|
sl@0
|
494 |
};
|
sl@0
|
495 |
#endif//EMULATOR
|
sl@0
|
496 |
|
sl@0
|
497 |
#ifdef __SYMBIAN32__
|
sl@0
|
498 |
const GThreadFunctions g_thread_functions_for_glib_use_default_temp =
|
sl@0
|
499 |
{
|
sl@0
|
500 |
g_mutex_new_posix_impl,
|
sl@0
|
501 |
(void (*)(GMutex *)) pthread_mutex_lock,
|
sl@0
|
502 |
g_mutex_trylock_posix_impl,
|
sl@0
|
503 |
(void (*)(GMutex *)) pthread_mutex_unlock,
|
sl@0
|
504 |
g_mutex_free_posix_impl,
|
sl@0
|
505 |
g_cond_new_posix_impl,
|
sl@0
|
506 |
(void (*)(GCond *)) pthread_cond_signal,
|
sl@0
|
507 |
(void (*)(GCond *)) pthread_cond_broadcast,
|
sl@0
|
508 |
(void (*)(GCond *, GMutex *)) pthread_cond_wait,
|
sl@0
|
509 |
g_cond_timed_wait_posix_impl,
|
sl@0
|
510 |
g_cond_free_posix_impl,
|
sl@0
|
511 |
g_private_new_posix_impl,
|
sl@0
|
512 |
g_private_get_posix_impl,
|
sl@0
|
513 |
g_private_set_posix_impl,
|
sl@0
|
514 |
g_thread_create_posix_impl,
|
sl@0
|
515 |
g_thread_yield_posix_impl,
|
sl@0
|
516 |
g_thread_join_posix_impl,
|
sl@0
|
517 |
g_thread_exit_posix_impl,
|
sl@0
|
518 |
g_thread_set_priority_posix_impl,
|
sl@0
|
519 |
g_thread_self_posix_impl,
|
sl@0
|
520 |
g_thread_equal_posix_impl
|
sl@0
|
521 |
};
|
sl@0
|
522 |
#endif//__SYMBIAN32__
|