blob: 71e5f339786f5d66f331dff9bf2a56db665bf9fb [file] [log] [blame]
Brian Paulc11371a1999-12-16 17:31:06 +00001/*
2 * Mesa 3-D graphics library
Brian Paul263317d2004-11-22 19:11:01 +00003 * Version: 6.3
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +00004 *
Brian Paul263317d2004-11-22 19:11:01 +00005 * Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +00006 *
Brian Paulc11371a1999-12-16 17:31:06 +00007 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +000013 *
Brian Paulc11371a1999-12-16 17:31:06 +000014 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +000016 *
Brian Paulc11371a1999-12-16 17:31:06 +000017 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25
26/*
27 * Thread support for gl dispatch.
28 *
29 * Initial version by John Stone (j.stone@acm.org) (johns@cs.umr.edu)
30 * and Christoph Poliwoda (poliwoda@volumegraphics.com)
31 * Revised by Keith Whitwell
32 * Adapted for new gl dispatcher by Brian Paul
Brian Paula9601f12000-02-10 21:27:25 +000033 *
34 *
35 *
36 * DOCUMENTATION
37 *
38 * This thread module exports the following types:
39 * _glthread_TSD Thread-specific data area
40 * _glthread_Thread Thread datatype
41 * _glthread_Mutex Mutual exclusion lock
42 *
43 * Macros:
44 * _glthread_DECLARE_STATIC_MUTEX(name) Declare a non-local mutex
45 * _glthread_INIT_MUTEX(name) Initialize a mutex
46 * _glthread_LOCK_MUTEX(name) Lock a mutex
47 * _glthread_UNLOCK_MUTEX(name) Unlock a mutex
48 *
49 * Functions:
50 * _glthread_GetID(v) Get integer thread ID
51 * _glthread_InitTSD() Initialize thread-specific data
52 * _glthread_GetTSD() Get thread-specific data
53 * _glthread_SetTSD() Set thread-specific data
54 *
Brian Paulc11371a1999-12-16 17:31:06 +000055 */
56
Brian Paulc11371a1999-12-16 17:31:06 +000057/*
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +000058 * If this file is accidentally included by a non-threaded build,
Brian Paulc11371a1999-12-16 17:31:06 +000059 * it should not cause the build to fail, or otherwise cause problems.
60 * In general, it should only be included when needed however.
61 */
Brian Paula360ab22000-02-10 21:54:06 +000062
Brian Paula360ab22000-02-10 21:54:06 +000063#ifndef GLTHREAD_H
64#define GLTHREAD_H
65
66
Ian Romanick6cae4f32005-04-14 21:05:55 +000067#if (defined(PTHREADS) || defined(SOLARIS_THREADS) ||\
Ian Romanick711555d2005-08-03 23:05:25 +000068 defined(WIN32_THREADS) || defined(USE_XTHREADS) || defined(BEOS_THREADS)) \
Ian Romanick6cae4f32005-04-14 21:05:55 +000069 && !defined(THREADS)
70# define THREADS
Brian Paulc11371a1999-12-16 17:31:06 +000071#endif
72
Jouk Jansen9e83e8c2000-11-17 11:00:55 +000073#ifdef VMS
74#include <GL/vms_x_fix.h>
75#endif
Brian Paulc11371a1999-12-16 17:31:06 +000076
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 */
Brian Paula360ab22000-02-10 21:54:06 +000086#if defined(PTHREADS)
Brian Paulc11371a1999-12-16 17:31:06 +000087#include <pthread.h> /* POSIX threads headers */
88
89typedef struct {
90 pthread_key_t key;
Brian Paula9601f12000-02-10 21:27:25 +000091 int initMagic;
Brian Paulc11371a1999-12-16 17:31:06 +000092} _glthread_TSD;
93
Brian Paulc11371a1999-12-16 17:31:06 +000094typedef pthread_t _glthread_Thread;
95
Brian Paulbc794052000-01-31 23:10:47 +000096typedef 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
Keith Whitwelle15fd852002-12-12 13:03:15 +0000104#define _glthread_DESTROY_MUTEX(name) \
105 pthread_mutex_destroy(&(name))
106
Brian Paulbc794052000-01-31 23:10:47 +0000107#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
Ian Romanick8e77da1c2004-06-29 19:08:20 +0000113/* This is temporarilly removed because driver binaries cannot count on
114 * the existance of _gl_DispatchTSD in libGL. It only exists in "new"
115 * libGL. We may be able to ressurect this optimization at some point
116 * for DRI driver or for software Mesa.
117 */
118#if 0
119extern struct _glapi_table * _glapi_DispatchTSD;
120extern _glthread_TSD _gl_DispatchTSD;
121
Ian Romanick9bdfee32005-07-18 12:31:24 +0000122#define GET_DISPATCH() \
123 ((__builtin_expect( _glapi_DispatchTSD != NULL, 1 )) \
124 ? _glapi_DispatchTSD : (struct _glapi_table *) pthread_getspecific(_gl_DispatchTSD.key))
Ian Romanick8e77da1c2004-06-29 19:08:20 +0000125#endif
126
Brian Paulc11371a1999-12-16 17:31:06 +0000127#endif /* PTHREADS */
128
129
130
131
132/*
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000133 * Solaris threads. Use only up to Solaris 2.4.
Brian Paulc11371a1999-12-16 17:31:06 +0000134 * Solaris 2.5 and higher provide POSIX threads.
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000135 * Be sure to compile with -mt on the Solaris compilers, or
Brian Paulc11371a1999-12-16 17:31:06 +0000136 * use -D_REENTRANT if using gcc.
137 */
138#ifdef SOLARIS_THREADS
139#include <thread.h>
140
141typedef struct {
142 thread_key_t key;
143 mutex_t keylock;
Brian Paula9601f12000-02-10 21:27:25 +0000144 int initMagic;
Brian Paulc11371a1999-12-16 17:31:06 +0000145} _glthread_TSD;
146
Brian Paulc11371a1999-12-16 17:31:06 +0000147typedef thread_t _glthread_Thread;
148
Brian Paulbc794052000-01-31 23:10:47 +0000149typedef mutex_t _glthread_Mutex;
150
151/* XXX need to really implement mutex-related macros */
152#define _glthread_DECLARE_STATIC_MUTEX(name) static _glthread_Mutex name = 0
153#define _glthread_INIT_MUTEX(name) (void) name
Keith Whitwelle15fd852002-12-12 13:03:15 +0000154#define _glthread_DESTROY_MUTEX(name) (void) name
Brian Paulbc794052000-01-31 23:10:47 +0000155#define _glthread_LOCK_MUTEX(name) (void) name
156#define _glthread_UNLOCK_MUTEX(name) (void) name
157
Brian Paulc11371a1999-12-16 17:31:06 +0000158#endif /* SOLARIS_THREADS */
159
160
161
162
163/*
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000164 * Windows threads. Should work with Windows NT and 95.
Brian Paulc11371a1999-12-16 17:31:06 +0000165 * IMPORTANT: Link with multithreaded runtime library when THREADS are
166 * used!
167 */
Brian Paulfa937f62000-02-11 21:38:33 +0000168#ifdef WIN32_THREADS
Brian Paulc11371a1999-12-16 17:31:06 +0000169#include <windows.h>
170
171typedef struct {
172 DWORD key;
Brian Paula9601f12000-02-10 21:27:25 +0000173 int initMagic;
Brian Paulc11371a1999-12-16 17:31:06 +0000174} _glthread_TSD;
175
Brian Paulc11371a1999-12-16 17:31:06 +0000176typedef HANDLE _glthread_Thread;
177
Brian Paulbc794052000-01-31 23:10:47 +0000178typedef CRITICAL_SECTION _glthread_Mutex;
179
180/* XXX need to really implement mutex-related macros */
181#define _glthread_DECLARE_STATIC_MUTEX(name) static _glthread_Mutex name = 0
182#define _glthread_INIT_MUTEX(name) (void) name
Keith Whitwelle15fd852002-12-12 13:03:15 +0000183#define _glthread_DESTROY_MUTEX(name) (void) name
Brian Paulbc794052000-01-31 23:10:47 +0000184#define _glthread_LOCK_MUTEX(name) (void) name
185#define _glthread_UNLOCK_MUTEX(name) (void) name
186
Brian Paulfa937f62000-02-11 21:38:33 +0000187#endif /* WIN32_THREADS */
Brian Paulc11371a1999-12-16 17:31:06 +0000188
189
190
191
192/*
Brian Paula9601f12000-02-10 21:27:25 +0000193 * XFree86 has its own thread wrapper, Xthreads.h
194 * We wrap it again for GL.
Brian Paulc11371a1999-12-16 17:31:06 +0000195 */
Ian Romanick711555d2005-08-03 23:05:25 +0000196#ifdef USE_XTHREADS
Brian Paul263317d2004-11-22 19:11:01 +0000197#include <X11/Xthreads.h>
Brian Paulc11371a1999-12-16 17:31:06 +0000198
Brian Paula9601f12000-02-10 21:27:25 +0000199typedef struct {
200 xthread_key_t key;
201 int initMagic;
202} _glthread_TSD;
Brian Paulc11371a1999-12-16 17:31:06 +0000203
Brian Paula9601f12000-02-10 21:27:25 +0000204typedef xthread_t _glthread_Thread;
Brian Paulc11371a1999-12-16 17:31:06 +0000205
Brian Paula9601f12000-02-10 21:27:25 +0000206typedef xmutex_rec _glthread_Mutex;
Brian Paulc11371a1999-12-16 17:31:06 +0000207
Brian Paul5104b4d2002-03-07 21:50:41 +0000208#ifdef XMUTEX_INITIALIZER
Brian Paula9601f12000-02-10 21:27:25 +0000209#define _glthread_DECLARE_STATIC_MUTEX(name) \
210 static _glthread_Mutex name = XMUTEX_INITIALIZER
Brian Paul5104b4d2002-03-07 21:50:41 +0000211#else
212#define _glthread_DECLARE_STATIC_MUTEX(name) \
213 static _glthread_Mutex name
214#endif
Brian Paulc11371a1999-12-16 17:31:06 +0000215
Brian Paula9601f12000-02-10 21:27:25 +0000216#define _glthread_INIT_MUTEX(name) \
217 xmutex_init(&(name))
Brian Paulc11371a1999-12-16 17:31:06 +0000218
Keith Whitwelle15fd852002-12-12 13:03:15 +0000219#define _glthread_DESTROY_MUTEX(name) \
220 xmutex_clear(&(name))
221
Brian Paula9601f12000-02-10 21:27:25 +0000222#define _glthread_LOCK_MUTEX(name) \
223 (void) xmutex_lock(&(name))
Brian Paulc11371a1999-12-16 17:31:06 +0000224
Brian Paula9601f12000-02-10 21:27:25 +0000225#define _glthread_UNLOCK_MUTEX(name) \
226 (void) xmutex_unlock(&(name))
227
Ian Romanick711555d2005-08-03 23:05:25 +0000228#endif /* USE_XTHREADS */
Brian Paulc11371a1999-12-16 17:31:06 +0000229
230
231
Brian Paul1b37d6c2001-11-12 23:50:12 +0000232/*
233 * BeOS threads. R5.x required.
234 */
235#ifdef BEOS_THREADS
Philippe Houdoinb4907822004-08-14 09:48:57 +0000236
Brian Paul1b37d6c2001-11-12 23:50:12 +0000237#include <kernel/OS.h>
238#include <support/TLS.h>
239
240typedef struct {
241 int32 key;
242 int initMagic;
243} _glthread_TSD;
244
245typedef thread_id _glthread_Thread;
246
247/* Use Benaphore, aka speeder semaphore */
248typedef struct {
249 int32 lock;
250 sem_id sem;
251} benaphore;
252typedef benaphore _glthread_Mutex;
253
Philippe Houdoinb4907822004-08-14 09:48:57 +0000254#define _glthread_DECLARE_STATIC_MUTEX(name) static _glthread_Mutex name = { 0, 0 }
255#define _glthread_INIT_MUTEX(name) name.sem = create_sem(0, #name"_benaphore"), name.lock = 0
256#define _glthread_DESTROY_MUTEX(name) delete_sem(name.sem), name.lock = 0
257#define _glthread_LOCK_MUTEX(name) if (name.sem == 0) _glthread_INIT_MUTEX(name); \
258 if (atomic_add(&(name.lock), 1) >= 1) acquire_sem(name.sem)
259#define _glthread_UNLOCK_MUTEX(name) if (atomic_add(&(name.lock), -1) > 1) release_sem(name.sem)
Brian Paul1b37d6c2001-11-12 23:50:12 +0000260
261#endif /* BEOS_THREADS */
262
263
Brian Paulbc794052000-01-31 23:10:47 +0000264
Brian Paula360ab22000-02-10 21:54:06 +0000265#ifndef THREADS
Brian Paulbc794052000-01-31 23:10:47 +0000266
267/*
268 * THREADS not defined
269 */
270
271typedef GLuint _glthread_TSD;
272
273typedef GLuint _glthread_Thread;
274
275typedef GLuint _glthread_Mutex;
276
277#define _glthread_DECLARE_STATIC_MUTEX(name) static _glthread_Mutex name = 0
278
279#define _glthread_INIT_MUTEX(name) (void) name
280
Keith Whitwelle15fd852002-12-12 13:03:15 +0000281#define _glthread_DESTROY_MUTEX(name) (void) name
282
Brian Paulbc794052000-01-31 23:10:47 +0000283#define _glthread_LOCK_MUTEX(name) (void) name
284
285#define _glthread_UNLOCK_MUTEX(name) (void) name
286
Brian Paulbc794052000-01-31 23:10:47 +0000287#endif /* THREADS */
288
Brian Paula9601f12000-02-10 21:27:25 +0000289
290
291/*
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000292 * Platform independent thread specific data API.
Brian Paula9601f12000-02-10 21:27:25 +0000293 */
294
295extern unsigned long
296_glthread_GetID(void);
297
298
299extern void
300_glthread_InitTSD(_glthread_TSD *);
301
302
303extern void *
304_glthread_GetTSD(_glthread_TSD *);
305
306
307extern void
308_glthread_SetTSD(_glthread_TSD *, void *);
309
Ian Romanick25fe93f2005-04-13 20:59:15 +0000310#if defined(GLX_USE_TLS)
311
312extern __thread struct _glapi_table * _glapi_tls_Dispatch
313 __attribute__((tls_model("initial-exec")));
314
Ian Romanick9bdfee32005-07-18 12:31:24 +0000315#define GET_DISPATCH() _glapi_tls_Dispatch
Ian Romanick25fe93f2005-04-13 20:59:15 +0000316
317#elif !defined(GL_CALL)
Ian Romanick8e77da1c2004-06-29 19:08:20 +0000318# if defined(THREADS)
319extern struct _glapi_table * _glapi_DispatchTSD;
Ian Romanick9bdfee32005-07-18 12:31:24 +0000320# define GET_DISPATCH() \
321 ((__builtin_expect( _glapi_DispatchTSD != NULL, 1 )) \
322 ? _glapi_DispatchTSD : _glapi_get_dispatch())
Ian Romanick8e77da1c2004-06-29 19:08:20 +0000323# else
Ian Romanick9bdfee32005-07-18 12:31:24 +0000324# define GET_DISPATCH() _glapi_Dispatch
Ian Romanick8e77da1c2004-06-29 19:08:20 +0000325# endif /* defined(THREADS) */
326#endif /* ndef GL_CALL */
Brian Paula9601f12000-02-10 21:27:25 +0000327
328
Brian Paulbc794052000-01-31 23:10:47 +0000329#endif /* THREADS_H */