OSDN Git Service

* gthr-dce.h (__gthread_objc_condition_allocate): Fix typo.
[pf3gnuchains/gcc-fork.git] / gcc / gthr-dce.h
1
2 /* Compile this one with gcc.  */
3 /* Copyright (C) 1997, 1999, 2000 Free Software Foundation, Inc.
4
5 This file is part of GNU CC.
6
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU CC 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
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING.  If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.  */
21
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.  */
28
29 #ifndef __gthr_dce_h
30 #define __gthr_dce_h
31
32 /* DCE threads interface.
33    DCE threads are based on POSIX threads draft 4, and many things
34    have changed since then. */
35
36 #define __GTHREADS 1
37
38 #include <pthread.h>
39
40 typedef pthread_key_t __gthread_key_t;
41 typedef pthread_once_t __gthread_once_t;
42 typedef pthread_mutex_t __gthread_mutex_t;
43
44 #define __GTHREAD_ONCE_INIT pthread_once_init
45 /* Howto define __GTHREAD_MUTEX_INIT? */
46
47 #if SUPPORTS_WEAK && GTHREAD_USE_WEAK
48
49 #pragma weak pthread_once
50 #pragma weak pthread_once_init
51 #pragma weak pthread_keycreate
52 #pragma weak pthread_key_delete
53 #pragma weak pthread_getspecific
54 #pragma weak pthread_setspecific
55 #pragma weak pthread_create
56
57 #pragma weak pthread_mutex_lock
58 #pragma weak pthread_mutex_trylock
59 #pragma weak pthread_mutex_unlock
60
61 #ifdef _LIBOBJC
62 /* Objective C. */
63 #pragma weak pthread_cond_broadcast
64 #pragma weak pthread_cond_destroy
65 #pragma weak pthread_cond_init
66 #pragma weak pthread_cond_signal
67 #pragma weak pthread_cond_wait
68 #pragma weak pthread_exit
69 #pragma weak pthread_getunique_np
70 #pragma weak pthread_mutex_init
71 #pragma weak pthread_mutex_destroy
72 #pragma weak pthread_self
73 #pragma weak pthread_yield
74 #endif
75
76 static void *__gthread_active_ptr = &pthread_create;
77
78 static inline int
79 __gthread_active_p (void)
80 {
81   return __gthread_active_ptr != 0;
82 }
83
84 #else /* not SUPPORTS_WEAK */
85
86 static inline int
87 __gthread_active_p (void)
88 {
89   return 1;
90 }
91
92 #endif /* SUPPORTS_WEAK */
93
94 #ifdef _LIBOBJC
95
96 /* Key structure for maintaining thread specific storage */
97 static pthread_key_t _objc_thread_storage;
98
99 /* Thread local storage for a single thread */
100 static void *thread_local_storage = NULL;
101
102 /* Backend initialization functions */
103
104 /* Initialize the threads subsystem. */
105 static inline int
106 __gthread_objc_init_thread_system(void)
107 {
108   if (__gthread_active_p ())
109     /* Initialize the thread storage key */
110     return pthread_keycreate (&_objc_thread_storage, NULL);
111   else
112     return -1;
113 }
114
115 /* Close the threads subsystem. */
116 static inline int
117 __gthread_objc_close_thread_system(void)
118 {
119   if (__gthread_active_p ())
120     return 0;
121   else
122     return -1;
123 }
124
125 /* Backend thread functions */
126
127 /* Create a new thread of execution. */
128 static inline objc_thread_t
129 __gthread_objc_thread_detach(void (*func)(void *), void *arg)
130 {
131   objc_thread_t thread_id;
132   pthread_t new_thread_handle;
133
134   if (!__gthread_active_p ())
135     return NULL;
136  
137   if ( !(pthread_create(&new_thread_handle, pthread_attr_default,
138                         (void *)func, arg)) )
139     {
140       /* ??? May not work! (64bit) */
141       thread_id = *(objc_thread_t *)&new_thread_handle;
142       pthread_detach(&new_thread_handle); /* Fully detach thread. */
143     }
144   else
145     thread_id = NULL;
146   
147   return thread_id;
148 }
149
150 /* Set the current thread's priority. */
151 static inline int
152 __gthread_objc_thread_set_priority(int priority)
153 {
154   int sys_priority = 0;
155
156   if (!__gthread_active_p ())
157     return -1;
158
159   switch (priority)
160     {
161     case OBJC_THREAD_INTERACTIVE_PRIORITY:
162       sys_priority = (PRI_FG_MIN_NP + PRI_FG_MAX_NP) / 2;
163       break;
164     default:
165     case OBJC_THREAD_BACKGROUND_PRIORITY:
166       sys_priority = (PRI_BG_MIN_NP + PRI_BG_MAX_NP) / 2;
167       break;
168     case OBJC_THREAD_LOW_PRIORITY:
169       sys_priority = (PRI_BG_MIN_NP + PRI_BG_MAX_NP) / 2;
170       break;
171     }
172     
173   /* Change the priority. */
174   if (pthread_setprio(pthread_self(), sys_priority) >= 0)
175     return 0;
176   else
177     /* Failed */
178     return -1;
179 }
180
181 /* Return the current thread's priority. */
182 static inline int
183 __gthread_objc_thread_get_priority(void)
184 {
185   int sys_priority;
186
187   if (__gthread_active_p ())
188     {
189       if ((sys_priority = pthread_getprio(pthread_self())) >= 0)
190         {
191           if (sys_priority >= PRI_FG_MIN_NP
192               && sys_priority <= PRI_FG_MAX_NP)
193             return OBJC_THREAD_INTERACTIVE_PRIORITY;
194           if (sys_priority >= PRI_BG_MIN_NP
195               && sys_priority <= PRI_BG_MAX_NP)
196             return OBJC_THREAD_BACKGROUND_PRIORITY;
197           return OBJC_THREAD_LOW_PRIORITY;
198         }
199
200       /* Failed */
201       return -1;
202     }
203   else
204     return OBJC_THREAD_INTERACTIVE_PRIORITY;
205 }
206
207 /* Yield our process time to another thread. */
208 static inline void
209 __gthread_objc_thread_yield(void)
210 {
211   if (__gthread_active_p ())
212     pthread_yield();
213 }
214
215 /* Terminate the current thread. */
216 static inline int
217 __gthread_objc_thread_exit(void)
218 {
219   if (__gthread_active_p ())
220     /* exit the thread */
221     pthread_exit(&__objc_thread_exit_status);
222
223   /* Failed if we reached here */
224   return -1;
225 }
226
227 /* Returns an integer value which uniquely describes a thread. */
228 static inline objc_thread_t
229 __gthread_objc_thread_id(void)
230 {
231   if (__gthread_active_p ())
232     {
233       pthread_t self = pthread_self();
234
235       return (objc_thread_t) pthread_getunique_np (&self);
236     }
237   else
238     return (objc_thread_t)1;
239 }
240
241 /* Sets the thread's local storage pointer. */
242 static inline int
243 __gthread_objc_thread_set_data(void *value)
244 {
245   if (__gthread_active_p ())
246     return pthread_setspecific(_objc_thread_storage, value);
247   else
248     {
249       thread_local_storage = value;
250       return 0;
251     }
252 }
253
254 /* Returns the thread's local storage pointer. */
255 static inline void *
256 __gthread_objc_thread_get_data(void)
257 {
258   void *value = NULL;
259
260   if (__gthread_active_p ())
261     {
262       if ( !(pthread_getspecific(_objc_thread_storage, &value)) )
263         return value;
264
265       return NULL;
266     }
267   else
268     return thread_local_storage;
269 }
270
271 /* Backend mutex functions */
272
273 /* Allocate a mutex. */
274 static inline int
275 __gthread_objc_mutex_allocate(objc_mutex_t mutex)
276 {
277   if (__gthread_active_p ()
278       && pthread_mutex_init((pthread_mutex_t *)mutex->backend,
279                             pthread_mutexattr_default))
280     return -1;
281
282   return 0;
283 }
284
285 /* Deallocate a mutex. */
286 static inline int
287 __gthread_objc_mutex_deallocate(objc_mutex_t mutex)
288 {
289   if (__gthread_active_p ()
290       && pthread_mutex_destroy((pthread_mutex_t *)mutex->backend))
291     return -1;
292
293   return 0;
294 }
295
296 /* Grab a lock on a mutex. */
297 static inline int
298 __gthread_objc_mutex_lock(objc_mutex_t mutex)
299 {
300   if (__gthread_active_p ())
301     return pthread_mutex_lock((pthread_mutex_t *)mutex->backend);
302   else
303     return 0;
304 }
305
306 /* Try to grab a lock on a mutex. */
307 static inline int
308 __gthread_objc_mutex_trylock(objc_mutex_t mutex)
309 {
310   if (__gthread_active_p ()
311       && pthread_mutex_trylock((pthread_mutex_t *)mutex->backend) != 1)
312     return -1;
313
314   return 0;
315 }
316
317 /* Unlock the mutex */
318 static inline int
319 __gthread_objc_mutex_unlock(objc_mutex_t mutex)
320 {
321   if (__gthread_active_p ())
322     return pthread_mutex_unlock((pthread_mutex_t *)mutex->backend);
323   else
324     return 0;
325 }
326
327 /* Backend condition mutex functions */
328
329 /* Allocate a condition. */
330 static inline int
331 __gthread_objc_condition_allocate(objc_condition_t condition)
332 {
333   if (__gthread_active_p ())
334     /* Unimplemented. */
335     return -1;
336   else
337     return 0;
338 }
339
340 /* Deallocate a condition. */
341 static inline int
342 __gthread_objc_condition_deallocate(objc_condition_t condition)
343 {
344   if (__gthread_active_p ())
345     /* Unimplemented. */
346     return -1;
347   else
348     return 0;
349 }
350
351 /* Wait on the condition */
352 static inline int
353 __gthread_objc_condition_wait(objc_condition_t condition, objc_mutex_t mutex)
354 {
355   if (__gthread_active_p ())
356     /* Unimplemented. */
357     return -1;
358   else
359     return 0;
360 }
361
362 /* Wake up all threads waiting on this condition. */
363 static inline int
364 __gthread_objc_condition_broadcast(objc_condition_t condition)
365 {
366   if (__gthread_active_p ())
367     /* Unimplemented. */
368     return -1;
369   else
370     return 0;
371 }
372
373 /* Wake up one thread waiting on this condition. */
374 static inline int
375 __gthread_objc_condition_signal(objc_condition_t condition)
376 {
377   if (__gthread_active_p ())
378     /* Unimplemented. */
379     return -1;
380   else
381     return 0;
382 }
383
384 #else /* _LIBOBJC */
385
386 static inline int
387 __gthread_once (__gthread_once_t *once, void (*func) (void))
388 {
389   if (__gthread_active_p ())
390     return pthread_once (once, func);
391   else
392     return -1;
393 }
394
395 static inline int
396 __gthread_key_create (__gthread_key_t *key, void (*dtor) (void *))
397 {
398   return pthread_keycreate (key, dtor);
399 }
400
401 static inline int
402 __gthread_key_dtor (__gthread_key_t key, void *ptr)
403 {
404   /* Nothing needed. */
405   return 0;
406 }
407
408 static inline int
409 __gthread_key_delete (__gthread_key_t key)
410 {
411   return pthread_key_delete (key);
412 }
413
414 static inline void *
415 __gthread_getspecific (__gthread_key_t key)
416 {
417   void *ptr;
418   if (pthread_getspecific (key, &ptr) == 0)
419     return ptr;
420   else
421     return 0;
422 }
423
424 static inline int
425 __gthread_setspecific (__gthread_key_t key, const void *ptr)
426 {
427   return pthread_setspecific (key, (void *) ptr);
428 }
429
430 static inline int
431 __gthread_mutex_lock (__gthread_mutex_t *mutex)
432 {
433   if (__gthread_active_p ())
434     return pthread_mutex_lock (mutex);
435   else
436     return 0;
437 }
438
439 static inline int
440 __gthread_mutex_trylock (__gthread_mutex_t *mutex)
441 {
442   if (__gthread_active_p ())
443     return pthread_mutex_trylock (mutex);
444   else
445     return 0;
446 }
447
448 static inline int
449 __gthread_mutex_unlock (__gthread_mutex_t *mutex)
450 {
451   if (__gthread_active_p ())
452     return pthread_mutex_unlock (mutex);
453   else
454     return 0;
455 }
456
457 #endif /* _LIBOBJC */
458
459 #endif /* not __gthr_dce_h */