1 /* GNU Objective C Runtime Thread Interface
2 Copyright (C) 1996, 1997 Free Software Foundation, Inc.
3 Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under the
8 terms of the GNU General Public License as published by the Free Software
9 Foundation; either version 2, or (at your option) any later version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
16 You should have received a copy of the GNU General Public License along with
17 GCC; see the file COPYING. If not, write to the Free Software
18 Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* As a special exception, if you link this library with files compiled with
22 GCC to produce an executable, this does not cause the resulting executable
23 to be covered by the GNU General Public License. This exception does not
24 however invalidate any other reasons why the executable file might be
25 covered by the GNU General Public License. */
31 /* Key structure for maintaining thread specific storage */
32 static pthread_key_t _objc_thread_storage
;
34 /* Backend initialization functions */
36 /* Initialize the threads subsystem. */
38 __objc_init_thread_system(void)
40 /* Initialize the thread storage key */
41 return pthread_keycreate(&_objc_thread_storage
, NULL
);
44 /* Close the threads subsystem. */
46 __objc_close_thread_system(void)
48 /* Destroy the thread storage key */
49 /* Not implemented yet */
50 /* return pthread_key_delete(&_objc_thread_storage); */
54 /* Backend thread functions */
56 /* Create a new thread of execution. */
58 __objc_thread_detach(void (*func
)(void *arg
), void *arg
)
60 objc_thread_t thread_id
;
61 pthread_t new_thread_handle
;
63 if (pthread_create(&new_thread_handle
, pthread_attr_default
,
64 (void *)func
, arg
) == 0)
66 /* ??? May not work! (64bit) */
67 thread_id
= *(objc_thread_t
*)&new_thread_handle
;
68 pthread_detach(&new_thread_handle
); /* Fully detach thread. */
76 /* Set the current thread's priority. */
78 __objc_thread_set_priority(int priority
)
84 case OBJC_THREAD_INTERACTIVE_PRIORITY
:
85 sys_priority
= (PRI_FG_MIN_NP
+ PRI_FG_MAX_NP
) / 2;
88 case OBJC_THREAD_BACKGROUND_PRIORITY
:
89 sys_priority
= (PRI_BG_MIN_NP
+ PRI_BG_MAX_NP
) / 2;
91 case OBJC_THREAD_LOW_PRIORITY
:
92 sys_priority
= (PRI_BG_MIN_NP
+ PRI_BG_MAX_NP
) / 2;
96 /* Change the priority. */
97 if (pthread_setprio(pthread_self(), sys_priority
) >= 0)
104 /* Return the current thread's priority. */
106 __objc_thread_get_priority(void)
110 if ((sys_priority
= pthread_getprio(pthread_self())) >= 0) {
111 if (sys_priority
>= PRI_FG_MIN_NP
&& sys_priority
<= PRI_FG_MAX_NP
)
112 return OBJC_THREAD_INTERACTIVE_PRIORITY
;
113 if (sys_priority
>= PRI_BG_MIN_NP
&& sys_priority
<= PRI_BG_MAX_NP
)
114 return OBJC_THREAD_BACKGROUND_PRIORITY
;
115 return OBJC_THREAD_LOW_PRIORITY
;
122 /* Yield our process time to another thread. */
124 __objc_thread_yield(void)
129 /* Terminate the current thread. */
131 __objc_thread_exit(void)
133 /* exit the thread */
134 pthread_exit(&__objc_thread_exit_status
);
136 /* Failed if we reached here */
140 /* Returns an integer value which uniquely describes a thread. */
142 __objc_thread_id(void)
144 pthread_t self
= pthread_self();
146 return (objc_thread_t
) pthread_getunique_np (&self
);
149 /* Sets the thread's local storage pointer. */
151 __objc_thread_set_data(void *value
)
153 return pthread_setspecific(_objc_thread_storage
, value
);
156 /* Returns the thread's local storage pointer. */
158 __objc_thread_get_data(void)
162 if ( !(pthread_getspecific(_objc_thread_storage
, &value
)) )
168 /* Backend mutex functions */
170 /* Allocate a mutex. */
172 __objc_mutex_allocate(objc_mutex_t mutex
)
174 if (pthread_mutex_init((pthread_mutex_t
*)(&(mutex
->backend
)),
175 pthread_mutexattr_default
))
181 /* Deallocate a mutex. */
183 __objc_mutex_deallocate(objc_mutex_t mutex
)
185 if (pthread_mutex_destroy((pthread_mutex_t
*)(&(mutex
->backend
))))
191 /* Grab a lock on a mutex. */
193 __objc_mutex_lock(objc_mutex_t mutex
)
195 return pthread_mutex_lock((pthread_mutex_t
*)(&(mutex
->backend
)));
198 /* Try to grab a lock on a mutex. */
200 __objc_mutex_trylock(objc_mutex_t mutex
)
202 if (pthread_mutex_trylock((pthread_mutex_t
*)(&(mutex
->backend
))) != 1)
208 /* Unlock the mutex */
210 __objc_mutex_unlock(objc_mutex_t mutex
)
212 return pthread_mutex_unlock((pthread_mutex_t
*)(&(mutex
->backend
)));
215 /* Backend condition mutex functions */
217 /* Allocate a condition. */
219 __objc_condition_allocate(objc_condition_t condition
)
225 if (pthread_cond_init((pthread_cond_t *)(&(condition->backend)), NULL))
232 /* Deallocate a condition. */
234 __objc_condition_deallocate(objc_condition_t condition
)
240 return pthread_cond_destroy((pthread_cond_t *)(&(condition->backend)));
244 /* Wait on the condition */
246 __objc_condition_wait(objc_condition_t condition
, objc_mutex_t mutex
)
252 return pthread_cond_wait((pthread_cond_t *)(&(condition->backend)),
253 (pthread_mutex_t *)(&(mutex->backend)));
257 /* Wake up all threads waiting on this condition. */
259 __objc_condition_broadcast(objc_condition_t condition
)
265 return pthread_cond_broadcast((pthread_cond_t *)(&(condition->backend)));
269 /* Wake up one thread waiting on this condition. */
271 __objc_condition_signal(objc_condition_t condition
)
277 return pthread_cond_signal((pthread_cond_t *)(&(condition->backend)));