5281a3e703014aac108d9f9b7fb5941ecb4f418b
[mesa.git] / src / mesa / glapi / glthread.h
1 /* $Id: glthread.h,v 1.12 2002/12/12 13:03:15 keithw Exp $ */
2
3 /*
4 * Mesa 3-D graphics library
5 * Version: 3.5
6 *
7 * Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included
17 * in all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
23 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 */
26
27
28 /*
29 * Thread support for gl dispatch.
30 *
31 * Initial version by John Stone (j.stone@acm.org) (johns@cs.umr.edu)
32 * and Christoph Poliwoda (poliwoda@volumegraphics.com)
33 * Revised by Keith Whitwell
34 * Adapted for new gl dispatcher by Brian Paul
35 *
36 *
37 *
38 * DOCUMENTATION
39 *
40 * This thread module exports the following types:
41 * _glthread_TSD Thread-specific data area
42 * _glthread_Thread Thread datatype
43 * _glthread_Mutex Mutual exclusion lock
44 *
45 * Macros:
46 * _glthread_DECLARE_STATIC_MUTEX(name) Declare a non-local mutex
47 * _glthread_INIT_MUTEX(name) Initialize a mutex
48 * _glthread_LOCK_MUTEX(name) Lock a mutex
49 * _glthread_UNLOCK_MUTEX(name) Unlock a mutex
50 *
51 * Functions:
52 * _glthread_GetID(v) Get integer thread ID
53 * _glthread_InitTSD() Initialize thread-specific data
54 * _glthread_GetTSD() Get thread-specific data
55 * _glthread_SetTSD() Set thread-specific data
56 *
57 */
58
59 /*
60 * If this file is accidentally included by a non-threaded build,
61 * it should not cause the build to fail, or otherwise cause problems.
62 * In general, it should only be included when needed however.
63 */
64
65 #ifndef GLTHREAD_H
66 #define GLTHREAD_H
67
68
69 #if defined(PTHREADS) || defined(SOLARIS_THREADS) || defined(WIN32_THREADS) || defined(XTHREADS)
70 #define THREADS
71 #endif
72
73 #ifdef VMS
74 #include <GL/vms_x_fix.h>
75 #endif
76
77 /*
78 * POSIX threads. This should be your choice in the Unix world
79 * whenever possible. When building with POSIX threads, be sure
80 * to enable any compiler flags which will cause the MT-safe
81 * libc (if one exists) to be used when linking, as well as any
82 * header macros for MT-safe errno, etc. For Solaris, this is the -mt
83 * compiler flag. On Solaris with gcc, use -D_REENTRANT to enable
84 * proper compiling for MT-safe libc etc.
85 */
86 #if defined(PTHREADS)
87 #include <pthread.h> /* POSIX threads headers */
88
89 typedef struct {
90 pthread_key_t key;
91 int initMagic;
92 } _glthread_TSD;
93
94 typedef pthread_t _glthread_Thread;
95
96 typedef pthread_mutex_t _glthread_Mutex;
97
98 #define _glthread_DECLARE_STATIC_MUTEX(name) \
99 static _glthread_Mutex name = PTHREAD_MUTEX_INITIALIZER
100
101 #define _glthread_INIT_MUTEX(name) \
102 pthread_mutex_init(&(name), NULL)
103
104 #define _glthread_DESTROY_MUTEX(name) \
105 pthread_mutex_destroy(&(name))
106
107 #define _glthread_LOCK_MUTEX(name) \
108 (void) pthread_mutex_lock(&(name))
109
110 #define _glthread_UNLOCK_MUTEX(name) \
111 (void) pthread_mutex_unlock(&(name))
112
113 #endif /* PTHREADS */
114
115
116
117
118 /*
119 * Solaris threads. Use only up to Solaris 2.4.
120 * Solaris 2.5 and higher provide POSIX threads.
121 * Be sure to compile with -mt on the Solaris compilers, or
122 * use -D_REENTRANT if using gcc.
123 */
124 #ifdef SOLARIS_THREADS
125 #include <thread.h>
126
127 typedef struct {
128 thread_key_t key;
129 mutex_t keylock;
130 int initMagic;
131 } _glthread_TSD;
132
133 typedef thread_t _glthread_Thread;
134
135 typedef mutex_t _glthread_Mutex;
136
137 /* XXX need to really implement mutex-related macros */
138 #define _glthread_DECLARE_STATIC_MUTEX(name) static _glthread_Mutex name = 0
139 #define _glthread_INIT_MUTEX(name) (void) name
140 #define _glthread_DESTROY_MUTEX(name) (void) name
141 #define _glthread_LOCK_MUTEX(name) (void) name
142 #define _glthread_UNLOCK_MUTEX(name) (void) name
143
144 #endif /* SOLARIS_THREADS */
145
146
147
148
149 /*
150 * Windows threads. Should work with Windows NT and 95.
151 * IMPORTANT: Link with multithreaded runtime library when THREADS are
152 * used!
153 */
154 #ifdef WIN32_THREADS
155 #include <windows.h>
156
157 typedef struct {
158 DWORD key;
159 int initMagic;
160 } _glthread_TSD;
161
162 typedef HANDLE _glthread_Thread;
163
164 typedef CRITICAL_SECTION _glthread_Mutex;
165
166 /* XXX need to really implement mutex-related macros */
167 #define _glthread_DECLARE_STATIC_MUTEX(name) static _glthread_Mutex name = 0
168 #define _glthread_INIT_MUTEX(name) (void) name
169 #define _glthread_DESTROY_MUTEX(name) (void) name
170 #define _glthread_LOCK_MUTEX(name) (void) name
171 #define _glthread_UNLOCK_MUTEX(name) (void) name
172
173 #endif /* WIN32_THREADS */
174
175
176
177
178 /*
179 * XFree86 has its own thread wrapper, Xthreads.h
180 * We wrap it again for GL.
181 */
182 #ifdef XTHREADS
183 #include "Xthreads.h"
184
185 typedef struct {
186 xthread_key_t key;
187 int initMagic;
188 } _glthread_TSD;
189
190 typedef xthread_t _glthread_Thread;
191
192 typedef xmutex_rec _glthread_Mutex;
193
194 #ifdef XMUTEX_INITIALIZER
195 #define _glthread_DECLARE_STATIC_MUTEX(name) \
196 static _glthread_Mutex name = XMUTEX_INITIALIZER
197 #else
198 #define _glthread_DECLARE_STATIC_MUTEX(name) \
199 static _glthread_Mutex name
200 #endif
201
202 #define _glthread_INIT_MUTEX(name) \
203 xmutex_init(&(name))
204
205 #define _glthread_DESTROY_MUTEX(name) \
206 xmutex_clear(&(name))
207
208 #define _glthread_LOCK_MUTEX(name) \
209 (void) xmutex_lock(&(name))
210
211 #define _glthread_UNLOCK_MUTEX(name) \
212 (void) xmutex_unlock(&(name))
213
214 #endif /* XTHREADS */
215
216
217
218 /*
219 * BeOS threads. R5.x required.
220 */
221 #ifdef BEOS_THREADS
222 #include <kernel/OS.h>
223 #include <support/TLS.h>
224
225 typedef struct {
226 int32 key;
227 int initMagic;
228 } _glthread_TSD;
229
230 typedef thread_id _glthread_Thread;
231
232 /* Use Benaphore, aka speeder semaphore */
233 typedef struct {
234 int32 lock;
235 sem_id sem;
236 } benaphore;
237 typedef benaphore _glthread_Mutex;
238
239 #define _glthread_DECLARE_STATIC_MUTEX(name) static _glthread_Mutex name = { 0,
240 create_sem(0, #name"_benaphore") }
241 #define _glthread_INIT_MUTEX(name) name.sem = create_sem(0, #name"_benaphore"), name.lock = 0
242 #define _glthread_LOCK_MUTEX(name) if((atomic_add(&(name.lock), 1)) >= 1) acquire_sem(name.sem)
243 #define _glthread_UNLOCK_MUTEX(name) if((atomic_add(&(name.lock), -1)) > 1) release_sem(name.sem)
244
245 #endif /* BEOS_THREADS */
246
247
248
249 #ifndef THREADS
250
251 /*
252 * THREADS not defined
253 */
254
255 typedef GLuint _glthread_TSD;
256
257 typedef GLuint _glthread_Thread;
258
259 typedef GLuint _glthread_Mutex;
260
261 #define _glthread_DECLARE_STATIC_MUTEX(name) static _glthread_Mutex name = 0
262
263 #define _glthread_INIT_MUTEX(name) (void) name
264
265 #define _glthread_DESTROY_MUTEX(name) (void) name
266
267 #define _glthread_LOCK_MUTEX(name) (void) name
268
269 #define _glthread_UNLOCK_MUTEX(name) (void) name
270
271 #endif /* THREADS */
272
273
274
275 /*
276 * Platform independent thread specific data API.
277 */
278
279 extern unsigned long
280 _glthread_GetID(void);
281
282
283 extern void
284 _glthread_InitTSD(_glthread_TSD *);
285
286
287 extern void *
288 _glthread_GetTSD(_glthread_TSD *);
289
290
291 extern void
292 _glthread_SetTSD(_glthread_TSD *, void *);
293
294
295
296 #endif /* THREADS_H */