2 /* Compile this one with gcc. */
3 /* Copyright (C) 1997, 1999, 2000, 2001 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 /* As a special exception, if you link this library with other files,
23 some of which are compiled with GCC, to produce an executable,
24 this library does not by itself cause the resulting executable
25 to be covered by the GNU General Public License.
26 This exception does not however invalidate any other reasons why
27 the executable file might be covered by the GNU General Public License. */
29 #ifndef GCC_GTHR_DCE_H
30 #define GCC_GTHR_DCE_H
32 /* If _DCE_THREADS is not defined, then we're building the single
33 threaded version of the libraries and do not want to reference
34 anything related to pthreads or dce. */
36 #include "gthr-single.h"
38 /* DCE threads interface.
39 DCE threads are based on POSIX threads draft 4, and many things
40 have changed since then. */
49 #define UNUSED(x) x __attribute__((unused))
52 typedef pthread_key_t __gthread_key_t
;
53 typedef pthread_once_t __gthread_once_t
;
54 typedef pthread_mutex_t __gthread_mutex_t
;
56 #define __GTHREAD_ONCE_INIT pthread_once_init
58 #define __GTHREAD_MUTEX_INIT_FUNCTION __gthread_mutex_init_function
60 #define __GTHREAD_MUTEX_INIT_DEFAULT pthread_once_init
62 #if SUPPORTS_WEAK && GTHREAD_USE_WEAK
64 #pragma weak pthread_once
65 #pragma weak pthread_once_init
66 #pragma weak pthread_keycreate
67 #pragma weak pthread_key_delete
68 #pragma weak pthread_getspecific
69 #pragma weak pthread_setspecific
70 #pragma weak pthread_create
71 #pragma weak pthread_mutex_init
72 #pragma weak pthread_mutex_lock
73 #pragma weak pthread_mutex_trylock
74 #pragma weak pthread_mutex_unlock
78 #pragma weak pthread_cond_broadcast
79 #pragma weak pthread_cond_destroy
80 #pragma weak pthread_cond_init
81 #pragma weak pthread_cond_signal
82 #pragma weak pthread_cond_wait
83 #pragma weak pthread_exit
84 #pragma weak pthread_getunique_np
85 #pragma weak pthread_mutex_destroy
86 #pragma weak pthread_self
87 #pragma weak pthread_yield
91 __gthread_active_p (void)
93 static void *const __gthread_active_ptr
= (void *) &pthread_create
;
94 return __gthread_active_ptr
!= 0;
97 #else /* not SUPPORTS_WEAK */
100 __gthread_active_p (void)
105 #endif /* SUPPORTS_WEAK */
109 /* Key structure for maintaining thread specific storage */
110 static pthread_key_t _objc_thread_storage
;
112 /* Thread local storage for a single thread */
113 static void *thread_local_storage
= NULL
;
115 /* Backend initialization functions */
117 /* Initialize the threads subsystem. */
119 __gthread_objc_init_thread_system (void)
121 if (__gthread_active_p ())
122 /* Initialize the thread storage key */
123 return pthread_keycreate (&_objc_thread_storage
, NULL
);
128 /* Close the threads subsystem. */
130 __gthread_objc_close_thread_system (void)
132 if (__gthread_active_p ())
138 /* Backend thread functions */
140 /* Create a new thread of execution. */
141 static inline objc_thread_t
142 __gthread_objc_thread_detach (void (*func
)(void *), void *arg
)
144 objc_thread_t thread_id
;
145 pthread_t new_thread_handle
;
147 if (!__gthread_active_p ())
150 if (!(pthread_create (&new_thread_handle
, pthread_attr_default
,
151 (void *) func
, arg
)))
153 /* ??? May not work! (64bit) */
154 thread_id
= *(objc_thread_t
*) &new_thread_handle
;
155 pthread_detach (&new_thread_handle
); /* Fully detach thread. */
163 /* Set the current thread's priority. */
165 __gthread_objc_thread_set_priority (int priority
)
167 int sys_priority
= 0;
169 if (!__gthread_active_p ())
174 case OBJC_THREAD_INTERACTIVE_PRIORITY
:
175 sys_priority
= (PRI_FG_MIN_NP
+ PRI_FG_MAX_NP
) / 2;
178 case OBJC_THREAD_BACKGROUND_PRIORITY
:
179 sys_priority
= (PRI_BG_MIN_NP
+ PRI_BG_MAX_NP
) / 2;
181 case OBJC_THREAD_LOW_PRIORITY
:
182 sys_priority
= (PRI_BG_MIN_NP
+ PRI_BG_MAX_NP
) / 2;
186 /* Change the priority. */
187 if (pthread_setprio (pthread_self (), sys_priority
) >= 0)
194 /* Return the current thread's priority. */
196 __gthread_objc_thread_get_priority (void)
200 if (__gthread_active_p ())
202 if ((sys_priority
= pthread_getprio (pthread_self ())) >= 0)
204 if (sys_priority
>= PRI_FG_MIN_NP
205 && sys_priority
<= PRI_FG_MAX_NP
)
206 return OBJC_THREAD_INTERACTIVE_PRIORITY
;
207 if (sys_priority
>= PRI_BG_MIN_NP
208 && sys_priority
<= PRI_BG_MAX_NP
)
209 return OBJC_THREAD_BACKGROUND_PRIORITY
;
210 return OBJC_THREAD_LOW_PRIORITY
;
217 return OBJC_THREAD_INTERACTIVE_PRIORITY
;
220 /* Yield our process time to another thread. */
222 __gthread_objc_thread_yield (void)
224 if (__gthread_active_p ())
228 /* Terminate the current thread. */
230 __gthread_objc_thread_exit (void)
232 if (__gthread_active_p ())
233 /* exit the thread */
234 pthread_exit (&__objc_thread_exit_status
);
236 /* Failed if we reached here */
240 /* Returns an integer value which uniquely describes a thread. */
241 static inline objc_thread_t
242 __gthread_objc_thread_id (void)
244 if (__gthread_active_p ())
246 pthread_t self
= pthread_self ();
248 return (objc_thread_t
) pthread_getunique_np (&self
);
251 return (objc_thread_t
) 1;
254 /* Sets the thread's local storage pointer. */
256 __gthread_objc_thread_set_data (void *value
)
258 if (__gthread_active_p ())
259 return pthread_setspecific (_objc_thread_storage
, value
);
262 thread_local_storage
= value
;
267 /* Returns the thread's local storage pointer. */
269 __gthread_objc_thread_get_data (void)
273 if (__gthread_active_p ())
275 if (!(pthread_getspecific (_objc_thread_storage
, &value
)))
281 return thread_local_storage
;
284 /* Backend mutex functions */
286 /* Allocate a mutex. */
288 __gthread_objc_mutex_allocate (objc_mutex_t mutex
)
290 if (__gthread_active_p ())
292 mutex
->backend
= objc_malloc (sizeof (pthread_mutex_t
));
294 if (pthread_mutex_init ((pthread_mutex_t
*) mutex
->backend
,
295 pthread_mutexattr_default
))
297 objc_free (mutex
->backend
);
298 mutex
->backend
= NULL
;
306 /* Deallocate a mutex. */
308 __gthread_objc_mutex_deallocate (objc_mutex_t mutex
)
310 if (__gthread_active_p ())
312 if (pthread_mutex_destroy ((pthread_mutex_t
*) mutex
->backend
))
315 objc_free (mutex
->backend
);
316 mutex
->backend
= NULL
;
322 /* Grab a lock on a mutex. */
324 __gthread_objc_mutex_lock (objc_mutex_t mutex
)
326 if (__gthread_active_p ())
327 return pthread_mutex_lock ((pthread_mutex_t
*) mutex
->backend
);
332 /* Try to grab a lock on a mutex. */
334 __gthread_objc_mutex_trylock (objc_mutex_t mutex
)
336 if (__gthread_active_p ()
337 && pthread_mutex_trylock ((pthread_mutex_t
*) mutex
->backend
) != 1)
343 /* Unlock the mutex */
345 __gthread_objc_mutex_unlock (objc_mutex_t mutex
)
347 if (__gthread_active_p ())
348 return pthread_mutex_unlock ((pthread_mutex_t
*) mutex
->backend
);
353 /* Backend condition mutex functions */
355 /* Allocate a condition. */
357 __gthread_objc_condition_allocate (objc_condition_t condition
)
359 if (__gthread_active_p ())
366 /* Deallocate a condition. */
368 __gthread_objc_condition_deallocate (objc_condition_t condition
)
370 if (__gthread_active_p ())
377 /* Wait on the condition */
379 __gthread_objc_condition_wait (objc_condition_t condition
, objc_mutex_t mutex
)
381 if (__gthread_active_p ())
388 /* Wake up all threads waiting on this condition. */
390 __gthread_objc_condition_broadcast (objc_condition_t condition
)
392 if (__gthread_active_p ())
399 /* Wake up one thread waiting on this condition. */
401 __gthread_objc_condition_signal (objc_condition_t condition
)
403 if (__gthread_active_p ())
413 __gthread_once (__gthread_once_t
*once
, void (*func
) (void))
415 if (__gthread_active_p ())
416 return pthread_once (once
, func
);
422 __gthread_key_create (__gthread_key_t
*key
, void (*dtor
) (void *))
424 return pthread_keycreate (key
, dtor
);
428 __gthread_key_delete (UNUSED (__gthread_key_t key
))
430 /* Operation is not supported. */
435 __gthread_getspecific (__gthread_key_t key
)
438 if (pthread_getspecific (key
, &ptr
) == 0)
445 __gthread_setspecific (__gthread_key_t key
, const void *ptr
)
447 return pthread_setspecific (key
, (void *) ptr
);
451 __gthread_mutex_init_function (__gthread_mutex_t
*mutex
)
453 if (__gthread_active_p ())
454 pthread_mutex_init (mutex
, pthread_mutexattr_default
);
458 __gthread_mutex_lock (__gthread_mutex_t
*mutex
)
460 if (__gthread_active_p ())
461 return pthread_mutex_lock (mutex
);
467 __gthread_mutex_trylock (__gthread_mutex_t
*mutex
)
469 if (__gthread_active_p ())
470 return pthread_mutex_trylock (mutex
);
476 __gthread_mutex_unlock (__gthread_mutex_t
*mutex
)
478 if (__gthread_active_p ())
479 return pthread_mutex_unlock (mutex
);
484 #endif /* _LIBOBJC */
489 #endif /* ! GCC_GTHR_DCE_H */