1 /* Threads compatibility routines for libgcc2 and libobjc. */
2 /* Compile this one with gcc. */
3 /* Copyright (C) 1997, 1999, 2000, 2004, 2008, 2009
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 Under Section 7 of GPL version 3, you are granted additional
19 permissions described in the GCC Runtime Library Exception, version
20 3.1, as published by the Free Software Foundation.
22 You should have received a copy of the GNU General Public License and
23 a copy of the GCC Runtime Library Exception along with this program;
24 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 <http://www.gnu.org/licenses/>. */
27 #ifndef GCC_GTHR_SINGLE_H
28 #define GCC_GTHR_SINGLE_H
30 /* Just provide compatibility for mutex handling. */
32 typedef int __gthread_key_t
;
33 typedef int __gthread_once_t
;
34 typedef int __gthread_mutex_t
;
35 typedef int __gthread_recursive_mutex_t
;
37 #define __GTHREAD_ONCE_INIT 0
38 #define __GTHREAD_MUTEX_INIT 0
39 #define __GTHREAD_MUTEX_INIT_FUNCTION(mx)
40 #define __GTHREAD_RECURSIVE_MUTEX_INIT 0
42 #define UNUSED __attribute__((unused))
46 /* Thread local storage for a single thread */
47 static void *thread_local_storage
= NULL
;
49 /* Backend initialization functions */
51 /* Initialize the threads subsystem. */
53 __gthread_objc_init_thread_system (void)
55 /* No thread support available */
59 /* Close the threads subsystem. */
61 __gthread_objc_close_thread_system (void)
63 /* No thread support available */
67 /* Backend thread functions */
69 /* Create a new thread of execution. */
70 static inline objc_thread_t
71 __gthread_objc_thread_detach (void (* func
)(void *), void * arg UNUSED
)
73 /* No thread support available */
77 /* Set the current thread's priority. */
79 __gthread_objc_thread_set_priority (int priority UNUSED
)
81 /* No thread support available */
85 /* Return the current thread's priority. */
87 __gthread_objc_thread_get_priority (void)
89 return OBJC_THREAD_INTERACTIVE_PRIORITY
;
92 /* Yield our process time to another thread. */
94 __gthread_objc_thread_yield (void)
99 /* Terminate the current thread. */
101 __gthread_objc_thread_exit (void)
103 /* No thread support available */
104 /* Should we really exit the program */
105 /* exit (&__objc_thread_exit_status); */
109 /* Returns an integer value which uniquely describes a thread. */
110 static inline objc_thread_t
111 __gthread_objc_thread_id (void)
113 /* No thread support, use 1. */
114 return (objc_thread_t
) 1;
117 /* Sets the thread's local storage pointer. */
119 __gthread_objc_thread_set_data (void *value
)
121 thread_local_storage
= value
;
125 /* Returns the thread's local storage pointer. */
127 __gthread_objc_thread_get_data (void)
129 return thread_local_storage
;
132 /* Backend mutex functions */
134 /* Allocate a mutex. */
136 __gthread_objc_mutex_allocate (objc_mutex_t mutex UNUSED
)
141 /* Deallocate a mutex. */
143 __gthread_objc_mutex_deallocate (objc_mutex_t mutex UNUSED
)
148 /* Grab a lock on a mutex. */
150 __gthread_objc_mutex_lock (objc_mutex_t mutex UNUSED
)
152 /* There can only be one thread, so we always get the lock */
156 /* Try to grab a lock on a mutex. */
158 __gthread_objc_mutex_trylock (objc_mutex_t mutex UNUSED
)
160 /* There can only be one thread, so we always get the lock */
164 /* Unlock the mutex */
166 __gthread_objc_mutex_unlock (objc_mutex_t mutex UNUSED
)
171 /* Backend condition mutex functions */
173 /* Allocate a condition. */
175 __gthread_objc_condition_allocate (objc_condition_t condition UNUSED
)
180 /* Deallocate a condition. */
182 __gthread_objc_condition_deallocate (objc_condition_t condition UNUSED
)
187 /* Wait on the condition */
189 __gthread_objc_condition_wait (objc_condition_t condition UNUSED
,
190 objc_mutex_t mutex UNUSED
)
195 /* Wake up all threads waiting on this condition. */
197 __gthread_objc_condition_broadcast (objc_condition_t condition UNUSED
)
202 /* Wake up one thread waiting on this condition. */
204 __gthread_objc_condition_signal (objc_condition_t condition UNUSED
)
212 __gthread_active_p (void)
218 __gthread_once (__gthread_once_t
*__once UNUSED
, void (*__func
) (void) UNUSED
)
223 static inline int UNUSED
224 __gthread_key_create (__gthread_key_t
*__key UNUSED
, void (*__func
) (void *) UNUSED
)
230 __gthread_key_delete (__gthread_key_t __key UNUSED
)
236 __gthread_getspecific (__gthread_key_t __key UNUSED
)
242 __gthread_setspecific (__gthread_key_t __key UNUSED
, const void *__v UNUSED
)
248 __gthread_mutex_destroy (__gthread_mutex_t
*__mutex UNUSED
)
254 __gthread_mutex_lock (__gthread_mutex_t
*__mutex UNUSED
)
260 __gthread_mutex_trylock (__gthread_mutex_t
*__mutex UNUSED
)
266 __gthread_mutex_unlock (__gthread_mutex_t
*__mutex UNUSED
)
272 __gthread_recursive_mutex_lock (__gthread_recursive_mutex_t
*__mutex
)
274 return __gthread_mutex_lock (__mutex
);
278 __gthread_recursive_mutex_trylock (__gthread_recursive_mutex_t
*__mutex
)
280 return __gthread_mutex_trylock (__mutex
);
284 __gthread_recursive_mutex_unlock (__gthread_recursive_mutex_t
*__mutex
)
286 return __gthread_mutex_unlock (__mutex
);
289 #endif /* _LIBOBJC */
293 #endif /* ! GCC_GTHR_SINGLE_H */