blob: 4391ed4f9a3ca536c9a4dec8031caab32ddb89b5 [file] [log] [blame]
Brian Paulc11371a1999-12-16 17:31:06 +00001
2/*
3 * Mesa 3-D graphics library
Gareth Hughes22144ab2001-03-12 00:48:37 +00004 * Version: 3.5
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +00005 *
Gareth Hughes22144ab2001-03-12 00:48:37 +00006 * Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +00007 *
Brian Paulc11371a1999-12-16 17:31:06 +00008 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +000014 *
Brian Paulc11371a1999-12-16 17:31:06 +000015 * The above copyright notice and this permission notice shall be included
16 * in all copies or substantial portions of the Software.
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +000017 *
Brian Paulc11371a1999-12-16 17:31:06 +000018 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
22 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
23 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26
27/*
28 * Thread support for gl dispatch.
29 *
30 * Initial version by John Stone (j.stone@acm.org) (johns@cs.umr.edu)
31 * and Christoph Poliwoda (poliwoda@volumegraphics.com)
32 * Revised by Keith Whitwell
33 * Adapted for new gl dispatcher by Brian Paul
Brian Paula9601f12000-02-10 21:27:25 +000034 *
35 *
36 *
37 * DOCUMENTATION
38 *
39 * This thread module exports the following types:
40 * _glthread_TSD Thread-specific data area
41 * _glthread_Thread Thread datatype
42 * _glthread_Mutex Mutual exclusion lock
43 *
44 * Macros:
45 * _glthread_DECLARE_STATIC_MUTEX(name) Declare a non-local mutex
46 * _glthread_INIT_MUTEX(name) Initialize a mutex
47 * _glthread_LOCK_MUTEX(name) Lock a mutex
48 * _glthread_UNLOCK_MUTEX(name) Unlock a mutex
49 *
50 * Functions:
51 * _glthread_GetID(v) Get integer thread ID
52 * _glthread_InitTSD() Initialize thread-specific data
53 * _glthread_GetTSD() Get thread-specific data
54 * _glthread_SetTSD() Set thread-specific data
55 *
Brian Paulc11371a1999-12-16 17:31:06 +000056 */
57
Brian Paulc11371a1999-12-16 17:31:06 +000058/*
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +000059 * If this file is accidentally included by a non-threaded build,
Brian Paulc11371a1999-12-16 17:31:06 +000060 * it should not cause the build to fail, or otherwise cause problems.
61 * In general, it should only be included when needed however.
62 */
Brian Paula360ab22000-02-10 21:54:06 +000063
Brian Paula360ab22000-02-10 21:54:06 +000064#ifndef GLTHREAD_H
65#define GLTHREAD_H
66
67
68#if defined(PTHREADS) || defined(SOLARIS_THREADS) || defined(WIN32_THREADS) || defined(XTHREADS)
69#define THREADS
Brian Paulc11371a1999-12-16 17:31:06 +000070#endif
71
Jouk Jansen9e83e8c2000-11-17 11:00:55 +000072#ifdef VMS
73#include <GL/vms_x_fix.h>
74#endif
Brian Paulc11371a1999-12-16 17:31:06 +000075
76/*
77 * POSIX threads. This should be your choice in the Unix world
78 * whenever possible. When building with POSIX threads, be sure
79 * to enable any compiler flags which will cause the MT-safe
80 * libc (if one exists) to be used when linking, as well as any
81 * header macros for MT-safe errno, etc. For Solaris, this is the -mt
82 * compiler flag. On Solaris with gcc, use -D_REENTRANT to enable
83 * proper compiling for MT-safe libc etc.
84 */
Brian Paula360ab22000-02-10 21:54:06 +000085#if defined(PTHREADS)
Brian Paulc11371a1999-12-16 17:31:06 +000086#include <pthread.h> /* POSIX threads headers */
87
88typedef struct {
89 pthread_key_t key;
Brian Paula9601f12000-02-10 21:27:25 +000090 int initMagic;
Brian Paulc11371a1999-12-16 17:31:06 +000091} _glthread_TSD;
92
Brian Paulc11371a1999-12-16 17:31:06 +000093typedef pthread_t _glthread_Thread;
94
Brian Paulbc794052000-01-31 23:10:47 +000095typedef pthread_mutex_t _glthread_Mutex;
96
97#define _glthread_DECLARE_STATIC_MUTEX(name) \
98 static _glthread_Mutex name = PTHREAD_MUTEX_INITIALIZER
99
100#define _glthread_INIT_MUTEX(name) \
101 pthread_mutex_init(&(name), NULL)
102
Keith Whitwelle15fd852002-12-12 13:03:15 +0000103#define _glthread_DESTROY_MUTEX(name) \
104 pthread_mutex_destroy(&(name))
105
Brian Paulbc794052000-01-31 23:10:47 +0000106#define _glthread_LOCK_MUTEX(name) \
107 (void) pthread_mutex_lock(&(name))
108
109#define _glthread_UNLOCK_MUTEX(name) \
110 (void) pthread_mutex_unlock(&(name))
111
Brian Paulc11371a1999-12-16 17:31:06 +0000112#endif /* PTHREADS */
113
114
115
116
117/*
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000118 * Solaris threads. Use only up to Solaris 2.4.
Brian Paulc11371a1999-12-16 17:31:06 +0000119 * Solaris 2.5 and higher provide POSIX threads.
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000120 * Be sure to compile with -mt on the Solaris compilers, or
Brian Paulc11371a1999-12-16 17:31:06 +0000121 * use -D_REENTRANT if using gcc.
122 */
123#ifdef SOLARIS_THREADS
124#include <thread.h>
125
126typedef struct {
127 thread_key_t key;
128 mutex_t keylock;
Brian Paula9601f12000-02-10 21:27:25 +0000129 int initMagic;
Brian Paulc11371a1999-12-16 17:31:06 +0000130} _glthread_TSD;
131
Brian Paulc11371a1999-12-16 17:31:06 +0000132typedef thread_t _glthread_Thread;
133
Brian Paulbc794052000-01-31 23:10:47 +0000134typedef mutex_t _glthread_Mutex;
135
136/* XXX need to really implement mutex-related macros */
137#define _glthread_DECLARE_STATIC_MUTEX(name) static _glthread_Mutex name = 0
138#define _glthread_INIT_MUTEX(name) (void) name
Keith Whitwelle15fd852002-12-12 13:03:15 +0000139#define _glthread_DESTROY_MUTEX(name) (void) name
Brian Paulbc794052000-01-31 23:10:47 +0000140#define _glthread_LOCK_MUTEX(name) (void) name
141#define _glthread_UNLOCK_MUTEX(name) (void) name
142
Brian Paulc11371a1999-12-16 17:31:06 +0000143#endif /* SOLARIS_THREADS */
144
145
146
147
148/*
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000149 * Windows threads. Should work with Windows NT and 95.
Brian Paulc11371a1999-12-16 17:31:06 +0000150 * IMPORTANT: Link with multithreaded runtime library when THREADS are
151 * used!
152 */
Brian Paulfa937f62000-02-11 21:38:33 +0000153#ifdef WIN32_THREADS
Brian Paulc11371a1999-12-16 17:31:06 +0000154#include <windows.h>
155
156typedef struct {
157 DWORD key;
Brian Paula9601f12000-02-10 21:27:25 +0000158 int initMagic;
Brian Paulc11371a1999-12-16 17:31:06 +0000159} _glthread_TSD;
160
Brian Paulc11371a1999-12-16 17:31:06 +0000161typedef HANDLE _glthread_Thread;
162
Brian Paulbc794052000-01-31 23:10:47 +0000163typedef CRITICAL_SECTION _glthread_Mutex;
164
165/* XXX need to really implement mutex-related macros */
166#define _glthread_DECLARE_STATIC_MUTEX(name) static _glthread_Mutex name = 0
167#define _glthread_INIT_MUTEX(name) (void) name
Keith Whitwelle15fd852002-12-12 13:03:15 +0000168#define _glthread_DESTROY_MUTEX(name) (void) name
Brian Paulbc794052000-01-31 23:10:47 +0000169#define _glthread_LOCK_MUTEX(name) (void) name
170#define _glthread_UNLOCK_MUTEX(name) (void) name
171
Brian Paulfa937f62000-02-11 21:38:33 +0000172#endif /* WIN32_THREADS */
Brian Paulc11371a1999-12-16 17:31:06 +0000173
174
175
176
177/*
Brian Paula9601f12000-02-10 21:27:25 +0000178 * XFree86 has its own thread wrapper, Xthreads.h
179 * We wrap it again for GL.
Brian Paulc11371a1999-12-16 17:31:06 +0000180 */
Brian Paula9601f12000-02-10 21:27:25 +0000181#ifdef XTHREADS
182#include "Xthreads.h"
Brian Paulc11371a1999-12-16 17:31:06 +0000183
Brian Paula9601f12000-02-10 21:27:25 +0000184typedef struct {
185 xthread_key_t key;
186 int initMagic;
187} _glthread_TSD;
Brian Paulc11371a1999-12-16 17:31:06 +0000188
Brian Paula9601f12000-02-10 21:27:25 +0000189typedef xthread_t _glthread_Thread;
Brian Paulc11371a1999-12-16 17:31:06 +0000190
Brian Paula9601f12000-02-10 21:27:25 +0000191typedef xmutex_rec _glthread_Mutex;
Brian Paulc11371a1999-12-16 17:31:06 +0000192
Brian Paul5104b4d2002-03-07 21:50:41 +0000193#ifdef XMUTEX_INITIALIZER
Brian Paula9601f12000-02-10 21:27:25 +0000194#define _glthread_DECLARE_STATIC_MUTEX(name) \
195 static _glthread_Mutex name = XMUTEX_INITIALIZER
Brian Paul5104b4d2002-03-07 21:50:41 +0000196#else
197#define _glthread_DECLARE_STATIC_MUTEX(name) \
198 static _glthread_Mutex name
199#endif
Brian Paulc11371a1999-12-16 17:31:06 +0000200
Brian Paula9601f12000-02-10 21:27:25 +0000201#define _glthread_INIT_MUTEX(name) \
202 xmutex_init(&(name))
Brian Paulc11371a1999-12-16 17:31:06 +0000203
Keith Whitwelle15fd852002-12-12 13:03:15 +0000204#define _glthread_DESTROY_MUTEX(name) \
205 xmutex_clear(&(name))
206
Brian Paula9601f12000-02-10 21:27:25 +0000207#define _glthread_LOCK_MUTEX(name) \
208 (void) xmutex_lock(&(name))
Brian Paulc11371a1999-12-16 17:31:06 +0000209
Brian Paula9601f12000-02-10 21:27:25 +0000210#define _glthread_UNLOCK_MUTEX(name) \
211 (void) xmutex_unlock(&(name))
212
213#endif /* XTHREADS */
Brian Paulc11371a1999-12-16 17:31:06 +0000214
215
216
Brian Paul1b37d6c2001-11-12 23:50:12 +0000217/*
218 * BeOS threads. R5.x required.
219 */
220#ifdef BEOS_THREADS
221#include <kernel/OS.h>
222#include <support/TLS.h>
223
224typedef struct {
225 int32 key;
226 int initMagic;
227} _glthread_TSD;
228
229typedef thread_id _glthread_Thread;
230
231/* Use Benaphore, aka speeder semaphore */
232typedef struct {
233 int32 lock;
234 sem_id sem;
235} benaphore;
236typedef benaphore _glthread_Mutex;
237
238#define _glthread_DECLARE_STATIC_MUTEX(name) static _glthread_Mutex name = { 0,
239create_sem(0, #name"_benaphore") }
Karl Schultze6373ba2001-11-30 22:11:45 +0000240#define _glthread_INIT_MUTEX(name) name.sem = create_sem(0, #name"_benaphore"), name.lock = 0
241#define _glthread_LOCK_MUTEX(name) if((atomic_add(&(name.lock), 1)) >= 1) acquire_sem(name.sem)
242#define _glthread_UNLOCK_MUTEX(name) if((atomic_add(&(name.lock), -1)) > 1) release_sem(name.sem)
Brian Paul1b37d6c2001-11-12 23:50:12 +0000243
244#endif /* BEOS_THREADS */
245
246
Brian Paulbc794052000-01-31 23:10:47 +0000247
Brian Paula360ab22000-02-10 21:54:06 +0000248#ifndef THREADS
Brian Paulbc794052000-01-31 23:10:47 +0000249
250/*
251 * THREADS not defined
252 */
253
254typedef GLuint _glthread_TSD;
255
256typedef GLuint _glthread_Thread;
257
258typedef GLuint _glthread_Mutex;
259
260#define _glthread_DECLARE_STATIC_MUTEX(name) static _glthread_Mutex name = 0
261
262#define _glthread_INIT_MUTEX(name) (void) name
263
Keith Whitwelle15fd852002-12-12 13:03:15 +0000264#define _glthread_DESTROY_MUTEX(name) (void) name
265
Brian Paulbc794052000-01-31 23:10:47 +0000266#define _glthread_LOCK_MUTEX(name) (void) name
267
268#define _glthread_UNLOCK_MUTEX(name) (void) name
269
Brian Paulbc794052000-01-31 23:10:47 +0000270#endif /* THREADS */
271
Brian Paula9601f12000-02-10 21:27:25 +0000272
273
274/*
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000275 * Platform independent thread specific data API.
Brian Paula9601f12000-02-10 21:27:25 +0000276 */
277
278extern unsigned long
279_glthread_GetID(void);
280
281
282extern void
283_glthread_InitTSD(_glthread_TSD *);
284
285
286extern void *
287_glthread_GetTSD(_glthread_TSD *);
288
289
290extern void
291_glthread_SetTSD(_glthread_TSD *, void *);
292
Ian Romanickc1d455f2004-05-27 00:03:53 +0000293#ifndef GL_CALL
294# define GL_CALL(name) (*(_glapi_Dispatch-> name))
295#endif
Brian Paula9601f12000-02-10 21:27:25 +0000296
297
Brian Paulbc794052000-01-31 23:10:47 +0000298#endif /* THREADS_H */