Update version
[official-gcc.git] / libobjc / thr-mach.c
blob44af0c1e2869d265a8b70ef5e1f328df49c2d09c
1 /* GNU Objective C Runtime Thread Implementation
2 Copyright (C) 1996, 1997 Free Software Foundation, Inc.
3 Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
4 Modified for Mach threads by Bill Bumgarner <bbum@friday.com>
5 Condition functions added by Mircea Oancea <mircea@first.elcom.pub.ro>
7 This file is part of GNU CC.
9 GNU CC is free software; you can redistribute it and/or modify it under the
10 terms of the GNU General Public License as published by the Free Software
11 Foundation; either version 2, or (at your option) any later version.
13 GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
16 details.
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING. If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
23 /* As a special exception, if you link this library with files compiled with
24 GCC to produce an executable, this does not cause the resulting executable
25 to be covered by the GNU General Public License. This exception does not
26 however invalidate any other reasons why the executable file might be
27 covered by the GNU General Public License. */
29 #include <mach/mach.h>
30 #include <mach/cthreads.h>
31 #include <objc/thr.h>
32 #include "runtime.h"
35 Obtain the maximum thread priority that can set for t. Under the
36 mach threading model, it is possible for the developer to adjust the
37 maximum priority downward only-- cannot be raised without superuser
38 privileges. Once lowered, it cannot be raised.
40 static int __mach_get_max_thread_priority(cthread_t t, int *base)
42 thread_t threadP;
43 kern_return_t error;
44 struct thread_sched_info info;
45 unsigned int info_count=THREAD_SCHED_INFO_COUNT;
47 if (t == NULL)
48 return -1;
50 threadP = cthread_thread(t); /* get thread underlying */
52 error=thread_info(threadP, THREAD_SCHED_INFO,
53 (thread_info_t)&info, &info_count);
55 if (error != KERN_SUCCESS)
56 return -1;
58 if (base != NULL)
59 *base = info.base_priority;
61 return info.max_priority;
64 /* Backend initialization functions */
66 /* Initialize the threads subsystem. */
67 int
68 __objc_init_thread_system(void)
70 return 0;
73 /* Close the threads subsystem. */
74 int
75 __objc_close_thread_system(void)
77 return 0;
80 /* Backend thread functions */
82 /* Create a new thread of execution. */
83 objc_thread_t
84 __objc_thread_detach(void (*func)(void *arg), void *arg)
86 objc_thread_t thread_id;
87 cthread_t new_thread_handle;
89 /* create thread */
90 new_thread_handle = cthread_fork((cthread_fn_t)func, arg);
92 if(new_thread_handle)
94 /* this is not terribly portable */
95 thread_id = *(objc_thread_t *)&new_thread_handle;
96 cthread_detach(new_thread_handle);
98 else
99 thread_id = NULL;
101 return thread_id;
104 /* Set the current thread's priority. */
106 __objc_thread_set_priority(int priority)
108 objc_thread_t *t = objc_thread_id();
109 cthread_t cT = (cthread_t) t;
110 int maxPriority = __mach_get_max_thread_priority(cT, NULL);
111 int sys_priority = 0;
113 if (maxPriority == -1)
114 return -1;
116 switch (priority)
118 case OBJC_THREAD_INTERACTIVE_PRIORITY:
119 sys_priority = maxPriority;
120 break;
121 case OBJC_THREAD_BACKGROUND_PRIORITY:
122 sys_priority = (maxPriority * 2) / 3;
123 break;
124 case OBJC_THREAD_LOW_PRIORITY:
125 sys_priority = maxPriority / 3;
126 break;
127 default:
128 return -1;
131 if (sys_priority == 0)
132 return -1;
134 /* Change the priority */
135 if (cthread_priority(cT, sys_priority, 0) == KERN_SUCCESS)
136 return 0;
137 else
138 return -1;
141 /* Return the current thread's priority. */
143 __objc_thread_get_priority(void)
145 objc_thread_t *t = objc_thread_id();
146 cthread_t cT = (cthread_t) t; /* see objc_thread_id() */
147 int basePriority;
148 int maxPriority;
149 int sys_priority = 0;
151 int interactiveT, backgroundT, lowT; /* thresholds */
153 maxPriority = __mach_get_max_thread_priority(cT, &basePriority);
155 if(maxPriority == -1)
156 return -1;
158 if (basePriority > ( (maxPriority * 2) / 3))
159 return OBJC_THREAD_INTERACTIVE_PRIORITY;
161 if (basePriority > ( maxPriority / 3))
162 return OBJC_THREAD_BACKGROUND_PRIORITY;
164 return OBJC_THREAD_LOW_PRIORITY;
167 /* Yield our process time to another thread. */
168 void
169 __objc_thread_yield(void)
171 cthread_yield();
174 /* Terminate the current thread. */
176 __objc_thread_exit(void)
178 /* exit the thread */
179 cthread_exit(&__objc_thread_exit_status);
181 /* Failed if we reached here */
182 return -1;
185 /* Returns an integer value which uniquely describes a thread. */
186 objc_thread_t
187 __objc_thread_id(void)
189 cthread_t self = cthread_self();
191 return *(objc_thread_t *)&self;
194 /* Sets the thread's local storage pointer. */
196 __objc_thread_set_data(void *value)
198 cthread_set_data(cthread_self(), (any_t) value);
199 return 0;
202 /* Returns the thread's local storage pointer. */
203 void *
204 __objc_thread_get_data(void)
206 return (void *) cthread_data(cthread_self());
209 /* Backend mutex functions */
211 /* Allocate a mutex. */
213 __objc_mutex_allocate(objc_mutex_t mutex)
215 int err = 0;
216 mutex->backend = objc_malloc(sizeof(struct mutex));
218 err = mutex_init((mutex_t)(mutex->backend));
220 if (err != 0)
222 objc_free(mutex->backend);
223 return -1;
225 else
226 return 0;
229 /* Deallocate a mutex. */
231 __objc_mutex_deallocate(objc_mutex_t mutex)
233 mutex_clear((mutex_t)(mutex->backend));
235 objc_free(mutex->backend);
236 mutex->backend = NULL;
237 return 0;
240 /* Grab a lock on a mutex. */
242 __objc_mutex_lock(objc_mutex_t mutex)
244 mutex_lock((mutex_t)(mutex->backend));
245 return 0;
248 /* Try to grab a lock on a mutex. */
250 __objc_mutex_trylock(objc_mutex_t mutex)
252 if (mutex_try_lock((mutex_t)(mutex->backend)) == 0)
253 return -1;
254 else
255 return 0;
258 /* Unlock the mutex */
260 __objc_mutex_unlock(objc_mutex_t mutex)
262 mutex_unlock((mutex_t)(mutex->backend));
263 return 0;
266 /* Backend condition mutex functions */
268 /* Allocate a condition. */
270 __objc_condition_allocate(objc_condition_t condition)
272 condition->backend = objc_malloc(sizeof(struct condition));
273 condition_init((condition_t)(condition->backend));
274 return 0;
277 /* Deallocate a condition. */
279 __objc_condition_deallocate(objc_condition_t condition)
281 condition_clear((condition_t)(condition->backend));
282 objc_free(condition->backend);
283 condition->backend = NULL;
284 return 0;
287 /* Wait on the condition */
289 __objc_condition_wait(objc_condition_t condition, objc_mutex_t mutex)
291 condition_wait((condition_t)(condition->backend),
292 (mutex_t)(mutex->backend));
293 return 0;
296 /* Wake up all threads waiting on this condition. */
298 __objc_condition_broadcast(objc_condition_t condition)
300 condition_broadcast((condition_t)(condition->backend));
301 return 0;
304 /* Wake up one thread waiting on this condition. */
306 __objc_condition_signal(objc_condition_t condition)
308 condition_signal((condition_t)(condition->backend));
309 return 0;
312 /* End of File */