Update version
[official-gcc.git] / libobjc / thr-objc.c
blob48150f0ef3e4dc6b111df76bb73a96f2aa574194
1 /* GNU Objective C Runtime Thread Interface.
2 Copyright (C) 1999 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify it under the
7 terms of the GNU General Public License as published by the Free Software
8 Foundation; either version 2, or (at your option) any later version.
10 GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
11 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13 details.
15 You should have received a copy of the GNU General Public License
16 along with GNU CC; see the file COPYING. If not, write to
17 the Free Software Foundation, 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 /* As a special exception, if you link this library with files compiled with
21 GCC to produce an executable, this does not cause the resulting executable
22 to be covered by the GNU General Public License. This exception does not
23 however invalidate any other reasons why the executable file might be
24 covered by the GNU General Public License. */
26 #define _LIBOBJC
27 #include "tconfig.h"
28 #include "defaults.h"
29 #include <objc/thr.h>
30 #include "runtime.h"
31 #include <gthr.h>
33 /* Backend initialization functions */
35 /* Initialize the threads subsystem. */
36 int
37 __objc_init_thread_system(void)
39 return __gthread_objc_init_thread_system ();
42 /* Close the threads subsystem. */
43 int
44 __objc_close_thread_system(void)
46 return __gthread_objc_close_thread_system ();
49 /* Backend thread functions */
51 /* Create a new thread of execution. */
52 objc_thread_t
53 __objc_thread_detach(void (*func)(void *), void *arg)
55 return __gthread_objc_thread_detach (func, arg);
58 /* Set the current thread's priority. */
59 int
60 __objc_thread_set_priority(int priority)
62 return __gthread_objc_thread_set_priority (priority);
65 /* Return the current thread's priority. */
66 int
67 __objc_thread_get_priority(void)
69 return __gthread_objc_thread_get_priority ();
72 /* Yield our process time to another thread. */
73 void
74 __objc_thread_yield(void)
76 __gthread_objc_thread_yield ();
79 /* Terminate the current thread. */
80 int
81 __objc_thread_exit(void)
83 return __gthread_objc_thread_exit ();
86 /* Returns an integer value which uniquely describes a thread. */
87 objc_thread_t
88 __objc_thread_id(void)
90 return __gthread_objc_thread_id ();
93 /* Sets the thread's local storage pointer. */
94 int
95 __objc_thread_set_data(void *value)
97 return __gthread_objc_thread_set_data (value);
100 /* Returns the thread's local storage pointer. */
101 void *
102 __objc_thread_get_data(void)
104 return __gthread_objc_thread_get_data ();
107 /* Backend mutex functions */
109 /* Allocate a mutex. */
111 __objc_mutex_allocate(objc_mutex_t mutex)
113 return __gthread_objc_mutex_allocate (mutex);
116 /* Deallocate a mutex. */
118 __objc_mutex_deallocate(objc_mutex_t mutex)
120 return __gthread_objc_mutex_deallocate (mutex);
123 /* Grab a lock on a mutex. */
125 __objc_mutex_lock(objc_mutex_t mutex)
127 return __gthread_objc_mutex_lock (mutex);
130 /* Try to grab a lock on a mutex. */
132 __objc_mutex_trylock(objc_mutex_t mutex)
134 return __gthread_objc_mutex_trylock (mutex);
137 /* Unlock the mutex */
139 __objc_mutex_unlock(objc_mutex_t mutex)
141 return __gthread_objc_mutex_unlock (mutex);
144 /* Backend condition mutex functions */
146 /* Allocate a condition. */
148 __objc_condition_allocate(objc_condition_t condition)
150 return __gthread_objc_condition_allocate (condition);
153 /* Deallocate a condition. */
155 __objc_condition_deallocate(objc_condition_t condition)
157 return __gthread_objc_condition_deallocate (condition);
160 /* Wait on the condition */
162 __objc_condition_wait(objc_condition_t condition, objc_mutex_t mutex)
164 return __gthread_objc_condition_wait (condition, mutex);
167 /* Wake up all threads waiting on this condition. */
169 __objc_condition_broadcast(objc_condition_t condition)
171 return __gthread_objc_condition_broadcast (condition);
174 /* Wake up one thread waiting on this condition. */
176 __objc_condition_signal(objc_condition_t condition)
178 return __gthread_objc_condition_signal (condition);
181 /* End of File */