blob: 08c5ba3addd85b109f6cc605dffdaf671e46d422 [file] [log] [blame]
Daniel Veillardb8478642001-10-12 17:29:10 +00001/**
2 * threads.c: set of generic threading related routines
3 *
4 * See Copyright for the status of this software.
5 *
6 * Gary Pennington <Gary.Pennington@uk.sun.com>
7 * daniel@veillard.com
8 */
9
Daniel Veillard34ce8be2002-03-18 19:37:11 +000010#define IN_LIBXML
Daniel Veillardb8478642001-10-12 17:29:10 +000011#include "libxml.h"
12
13#include <string.h>
14
15#include <libxml/threads.h>
16#include <libxml/globals.h>
17
18#ifdef HAVE_SYS_TYPES_H
19#include <sys/types.h>
20#endif
21#ifdef HAVE_UNISTD_H
22#include <unistd.h>
23#endif
24#ifdef HAVE_STDLIB_H
25#include <stdlib.h>
26#endif
27#ifdef HAVE_PTHREAD_H
28#include <pthread.h>
29#endif
Igor Zlatkovicf2160a02002-10-31 15:58:42 +000030
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +000031#ifdef HAVE_WIN32_THREADS
32#include <windows.h>
Igor Zlatkovicf2160a02002-10-31 15:58:42 +000033#ifndef HAVE_COMPILER_TLS
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +000034#include <process.h>
35#endif
36#endif
Daniel Veillardb8478642001-10-12 17:29:10 +000037
Daniel Veillard82cb3192003-10-29 13:39:15 +000038#ifdef HAVE_BEOS_THREADS
39#include <OS.h>
40#include <TLS.h>
41#endif
42
Daniel Veillardb8478642001-10-12 17:29:10 +000043#if defined(SOLARIS)
44#include <note.h>
45#endif
46
Daniel Veillard6f350292001-10-14 09:56:15 +000047/* #define DEBUG_THREADS */
Daniel Veillardb8478642001-10-12 17:29:10 +000048
Daniel Veillarddbfe05a2005-05-04 09:18:00 +000049#ifdef HAVE_PTHREAD_H
50
51static int libxml_is_threaded = -1;
52#ifdef __GNUC__
53#ifdef linux
54#if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || (__GNUC__ > 3)
55extern int pthread_once (pthread_once_t *__once_control,
56 void (*__init_routine) (void))
57 __attribute((weak));
58extern void *pthread_getspecific (pthread_key_t __key)
59 __attribute((weak));
60extern int pthread_setspecific (pthread_key_t __key,
61 __const void *__pointer)
62 __attribute((weak));
63extern int pthread_key_create (pthread_key_t *__key,
64 void (*__destr_function) (void *))
65 __attribute((weak));
66extern int pthread_mutex_init ()
67 __attribute((weak));
68extern int pthread_mutex_destroy ()
69 __attribute((weak));
70extern int pthread_mutex_lock ()
71 __attribute((weak));
72extern int pthread_mutex_unlock ()
73 __attribute((weak));
74extern int pthread_cond_init ()
75 __attribute((weak));
76extern int pthread_equal ()
77 __attribute((weak));
78extern pthread_t pthread_self ()
79 __attribute((weak));
80extern int pthread_key_create ()
81 __attribute((weak));
82extern int pthread_cond_signal ()
83 __attribute((weak));
84#endif
85#endif /* linux */
86#endif /* __GNUC__ */
87#endif /* HAVE_PTHREAD_H */
88
Daniel Veillardb8478642001-10-12 17:29:10 +000089/*
90 * TODO: this module still uses malloc/free and not xmlMalloc/xmlFree
91 * to avoid some crazyness since xmlMalloc/xmlFree may actually
92 * be hosted on allocated blocks needing them for the allocation ...
93 */
94
95/*
96 * xmlMutex are a simple mutual exception locks
97 */
98struct _xmlMutex {
99#ifdef HAVE_PTHREAD_H
100 pthread_mutex_t lock;
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000101#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000102 HANDLE mutex;
Daniel Veillard82cb3192003-10-29 13:39:15 +0000103#elif defined HAVE_BEOS_THREADS
104 sem_id sem;
Daniel Veillard254b1262003-11-01 17:04:58 +0000105 thread_id tid;
Daniel Veillardb8478642001-10-12 17:29:10 +0000106#else
107 int empty;
108#endif
109};
110
111/*
112 * xmlRMutex are reentrant mutual exception locks
113 */
114struct _xmlRMutex {
115#ifdef HAVE_PTHREAD_H
116 pthread_mutex_t lock;
117 unsigned int held;
118 unsigned int waiters;
119 pthread_t tid;
120 pthread_cond_t cv;
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000121#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000122 CRITICAL_SECTION cs;
123 unsigned int count;
Daniel Veillard82cb3192003-10-29 13:39:15 +0000124#elif defined HAVE_BEOS_THREADS
125 xmlMutexPtr lock;
126 thread_id tid;
127 int32 count;
Daniel Veillardb8478642001-10-12 17:29:10 +0000128#else
129 int empty;
130#endif
131};
132/*
133 * This module still has some internal static data.
134 * - xmlLibraryLock a global lock
135 * - globalkey used for per-thread data
Daniel Veillardb8478642001-10-12 17:29:10 +0000136 */
Daniel Veillard6f350292001-10-14 09:56:15 +0000137
Daniel Veillardb8478642001-10-12 17:29:10 +0000138#ifdef HAVE_PTHREAD_H
Daniel Veillardb8478642001-10-12 17:29:10 +0000139static pthread_key_t globalkey;
Daniel Veillard6f350292001-10-14 09:56:15 +0000140static pthread_t mainthread;
Daniel Veillarde28313b2001-12-06 14:08:31 +0000141static pthread_once_t once_control = PTHREAD_ONCE_INIT;
Daniel Veillardfde5b0b2007-02-12 17:31:53 +0000142static pthread_mutex_t global_init_lock = PTHREAD_MUTEX_INITIALIZER;
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000143#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000144#if defined(HAVE_COMPILER_TLS)
145static __declspec(thread) xmlGlobalState tlstate;
146static __declspec(thread) int tlstate_inited = 0;
147#else /* HAVE_COMPILER_TLS */
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000148static DWORD globalkey = TLS_OUT_OF_INDEXES;
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000149#endif /* HAVE_COMPILER_TLS */
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000150static DWORD mainthread;
Daniel Veillard62121e22005-02-24 15:38:52 +0000151static struct
152{
Daniel Veillard36616dd2005-02-25 07:31:49 +0000153 DWORD done;
154 DWORD control;
Daniel Veillard62121e22005-02-24 15:38:52 +0000155} run_once = { 0, 0 };
Daniel Veillardfde5b0b2007-02-12 17:31:53 +0000156static volatile LPCRITICAL_SECTION global_init_lock = NULL;
Daniel Veillard82cb3192003-10-29 13:39:15 +0000157/* endif HAVE_WIN32_THREADS */
158#elif defined HAVE_BEOS_THREADS
159int32 globalkey = 0;
160thread_id mainthread = 0;
161int32 run_once_init = 0;
Daniel Veillardfde5b0b2007-02-12 17:31:53 +0000162static int32 global_init_lock = -1;
163static vint32 global_init_count = 0;
Daniel Veillard82cb3192003-10-29 13:39:15 +0000164#endif
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000165
Daniel Veillardb8478642001-10-12 17:29:10 +0000166static xmlRMutexPtr xmlLibraryLock = NULL;
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000167#ifdef LIBXML_THREAD_ENABLED
Daniel Veillarde28313b2001-12-06 14:08:31 +0000168static void xmlOnceInit(void);
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000169#endif
Daniel Veillardb8478642001-10-12 17:29:10 +0000170
171/**
Daniel Veillard01c13b52002-12-10 15:19:08 +0000172 * xmlNewMutex:
Daniel Veillardb8478642001-10-12 17:29:10 +0000173 *
174 * xmlNewMutex() is used to allocate a libxml2 token struct for use in
175 * synchronizing access to data.
176 *
177 * Returns a new simple mutex pointer or NULL in case of error
178 */
179xmlMutexPtr
180xmlNewMutex(void)
181{
182 xmlMutexPtr tok;
183
184 if ((tok = malloc(sizeof(xmlMutex))) == NULL)
185 return (NULL);
186#ifdef HAVE_PTHREAD_H
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000187 if (libxml_is_threaded != 0)
188 pthread_mutex_init(&tok->lock, NULL);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000189#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000190 tok->mutex = CreateMutex(NULL, FALSE, NULL);
Daniel Veillard82cb3192003-10-29 13:39:15 +0000191#elif defined HAVE_BEOS_THREADS
192 if ((tok->sem = create_sem(1, "xmlMutex")) < B_OK) {
193 free(tok);
194 return NULL;
195 }
Daniel Veillard254b1262003-11-01 17:04:58 +0000196 tok->tid = -1;
Daniel Veillardb8478642001-10-12 17:29:10 +0000197#endif
198 return (tok);
199}
200
201/**
202 * xmlFreeMutex:
203 * @tok: the simple mutex
204 *
205 * xmlFreeMutex() is used to reclaim resources associated with a libxml2 token
206 * struct.
207 */
208void
209xmlFreeMutex(xmlMutexPtr tok)
210{
Daniel Veillarddf101d82003-07-08 14:03:36 +0000211 if (tok == NULL) return;
212
Daniel Veillardb8478642001-10-12 17:29:10 +0000213#ifdef HAVE_PTHREAD_H
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000214 if (libxml_is_threaded != 0)
215 pthread_mutex_destroy(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000216#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000217 CloseHandle(tok->mutex);
Daniel Veillard82cb3192003-10-29 13:39:15 +0000218#elif defined HAVE_BEOS_THREADS
219 delete_sem(tok->sem);
Daniel Veillardb8478642001-10-12 17:29:10 +0000220#endif
221 free(tok);
222}
223
224/**
225 * xmlMutexLock:
226 * @tok: the simple mutex
227 *
228 * xmlMutexLock() is used to lock a libxml2 token.
229 */
230void
Daniel Veillard70bcb0e2003-08-08 14:00:28 +0000231xmlMutexLock(xmlMutexPtr tok)
Daniel Veillardb8478642001-10-12 17:29:10 +0000232{
Daniel Veillard70bcb0e2003-08-08 14:00:28 +0000233 if (tok == NULL)
234 return;
Daniel Veillardb8478642001-10-12 17:29:10 +0000235#ifdef HAVE_PTHREAD_H
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000236 if (libxml_is_threaded != 0)
237 pthread_mutex_lock(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000238#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000239 WaitForSingleObject(tok->mutex, INFINITE);
Daniel Veillard82cb3192003-10-29 13:39:15 +0000240#elif defined HAVE_BEOS_THREADS
241 if (acquire_sem(tok->sem) != B_NO_ERROR) {
242#ifdef DEBUG_THREADS
243 xmlGenericError(xmlGenericErrorContext, "xmlMutexLock():BeOS:Couldn't aquire semaphore\n");
244 exit();
245#endif
246 }
Daniel Veillard254b1262003-11-01 17:04:58 +0000247 tok->tid = find_thread(NULL);
Daniel Veillardb8478642001-10-12 17:29:10 +0000248#endif
249
250}
251
252/**
253 * xmlMutexUnlock:
254 * @tok: the simple mutex
255 *
256 * xmlMutexUnlock() is used to unlock a libxml2 token.
257 */
258void
Daniel Veillard5805be22003-08-28 08:03:23 +0000259xmlMutexUnlock(xmlMutexPtr tok)
Daniel Veillardb8478642001-10-12 17:29:10 +0000260{
Daniel Veillard5805be22003-08-28 08:03:23 +0000261 if (tok == NULL)
262 return;
Daniel Veillardb8478642001-10-12 17:29:10 +0000263#ifdef HAVE_PTHREAD_H
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000264 if (libxml_is_threaded != 0)
265 pthread_mutex_unlock(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000266#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000267 ReleaseMutex(tok->mutex);
Daniel Veillard82cb3192003-10-29 13:39:15 +0000268#elif defined HAVE_BEOS_THREADS
Daniel Veillard254b1262003-11-01 17:04:58 +0000269 if (tok->tid == find_thread(NULL)) {
270 tok->tid = -1;
271 release_sem(tok->sem);
272 }
Daniel Veillardb8478642001-10-12 17:29:10 +0000273#endif
274}
275
276/**
Daniel Veillard01c13b52002-12-10 15:19:08 +0000277 * xmlNewRMutex:
Daniel Veillardb8478642001-10-12 17:29:10 +0000278 *
279 * xmlRNewMutex() is used to allocate a reentrant mutex for use in
280 * synchronizing access to data. token_r is a re-entrant lock and thus useful
281 * for synchronizing access to data structures that may be manipulated in a
282 * recursive fashion.
283 *
284 * Returns the new reentrant mutex pointer or NULL in case of error
285 */
286xmlRMutexPtr
287xmlNewRMutex(void)
288{
289 xmlRMutexPtr tok;
290
291 if ((tok = malloc(sizeof(xmlRMutex))) == NULL)
292 return (NULL);
293#ifdef HAVE_PTHREAD_H
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000294 if (libxml_is_threaded != 0) {
295 pthread_mutex_init(&tok->lock, NULL);
296 tok->held = 0;
297 tok->waiters = 0;
298 pthread_cond_init(&tok->cv, NULL);
299 }
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000300#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000301 InitializeCriticalSection(&tok->cs);
302 tok->count = 0;
Daniel Veillard82cb3192003-10-29 13:39:15 +0000303#elif defined HAVE_BEOS_THREADS
304 if ((tok->lock = xmlNewMutex()) == NULL) {
305 free(tok);
306 return NULL;
307 }
308 tok->count = 0;
Daniel Veillardb8478642001-10-12 17:29:10 +0000309#endif
310 return (tok);
311}
312
313/**
Daniel Veillard01c13b52002-12-10 15:19:08 +0000314 * xmlFreeRMutex:
Daniel Veillardb8478642001-10-12 17:29:10 +0000315 * @tok: the reentrant mutex
316 *
317 * xmlRFreeMutex() is used to reclaim resources associated with a
318 * reentrant mutex.
319 */
320void
Daniel Veillard0ba59232002-02-10 13:20:39 +0000321xmlFreeRMutex(xmlRMutexPtr tok ATTRIBUTE_UNUSED)
Daniel Veillardb8478642001-10-12 17:29:10 +0000322{
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000323 if (tok == NULL)
324 return;
Daniel Veillardb8478642001-10-12 17:29:10 +0000325#ifdef HAVE_PTHREAD_H
Daniel Veillarda8b54132006-06-29 11:50:18 +0000326 if (libxml_is_threaded != 0) {
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000327 pthread_mutex_destroy(&tok->lock);
Daniel Veillarda8b54132006-06-29 11:50:18 +0000328 pthread_cond_destroy(&tok->cv);
329 }
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000330#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000331 DeleteCriticalSection(&tok->cs);
Daniel Veillard82cb3192003-10-29 13:39:15 +0000332#elif defined HAVE_BEOS_THREADS
333 xmlFreeMutex(tok->lock);
Daniel Veillardb8478642001-10-12 17:29:10 +0000334#endif
335 free(tok);
336}
337
338/**
339 * xmlRMutexLock:
340 * @tok: the reentrant mutex
341 *
342 * xmlRMutexLock() is used to lock a libxml2 token_r.
343 */
344void
Daniel Veillard5f1e1f82003-09-11 23:35:09 +0000345xmlRMutexLock(xmlRMutexPtr tok)
Daniel Veillardb8478642001-10-12 17:29:10 +0000346{
Daniel Veillard5f1e1f82003-09-11 23:35:09 +0000347 if (tok == NULL)
348 return;
Daniel Veillardb8478642001-10-12 17:29:10 +0000349#ifdef HAVE_PTHREAD_H
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000350 if (libxml_is_threaded == 0)
351 return;
352
Daniel Veillardb8478642001-10-12 17:29:10 +0000353 pthread_mutex_lock(&tok->lock);
354 if (tok->held) {
355 if (pthread_equal(tok->tid, pthread_self())) {
356 tok->held++;
357 pthread_mutex_unlock(&tok->lock);
358 return;
359 } else {
360 tok->waiters++;
361 while (tok->held)
362 pthread_cond_wait(&tok->cv, &tok->lock);
363 tok->waiters--;
364 }
365 }
366 tok->tid = pthread_self();
367 tok->held = 1;
368 pthread_mutex_unlock(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000369#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000370 EnterCriticalSection(&tok->cs);
371 ++tok->count;
Daniel Veillard82cb3192003-10-29 13:39:15 +0000372#elif defined HAVE_BEOS_THREADS
Daniel Veillard254b1262003-11-01 17:04:58 +0000373 if (tok->lock->tid == find_thread(NULL)) {
Daniel Veillard82cb3192003-10-29 13:39:15 +0000374 tok->count++;
375 return;
376 } else {
377 xmlMutexLock(tok->lock);
Daniel Veillard82cb3192003-10-29 13:39:15 +0000378 tok->count = 1;
379 }
Daniel Veillardb8478642001-10-12 17:29:10 +0000380#endif
381}
382
383/**
384 * xmlRMutexUnlock:
385 * @tok: the reentrant mutex
386 *
387 * xmlRMutexUnlock() is used to unlock a libxml2 token_r.
388 */
389void
Daniel Veillard0ba59232002-02-10 13:20:39 +0000390xmlRMutexUnlock(xmlRMutexPtr tok ATTRIBUTE_UNUSED)
Daniel Veillardb8478642001-10-12 17:29:10 +0000391{
Daniel Veillard5f1e1f82003-09-11 23:35:09 +0000392 if (tok == NULL)
393 return;
Daniel Veillardb8478642001-10-12 17:29:10 +0000394#ifdef HAVE_PTHREAD_H
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000395 if (libxml_is_threaded == 0)
396 return;
397
Daniel Veillardb8478642001-10-12 17:29:10 +0000398 pthread_mutex_lock(&tok->lock);
399 tok->held--;
400 if (tok->held == 0) {
401 if (tok->waiters)
402 pthread_cond_signal(&tok->cv);
403 tok->tid = 0;
404 }
405 pthread_mutex_unlock(&tok->lock);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000406#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000407 if (!--tok->count)
408 LeaveCriticalSection(&tok->cs);
Daniel Veillard82cb3192003-10-29 13:39:15 +0000409#elif defined HAVE_BEOS_THREADS
Daniel Veillard254b1262003-11-01 17:04:58 +0000410 if (tok->lock->tid == find_thread(NULL)) {
Daniel Veillard82cb3192003-10-29 13:39:15 +0000411 tok->count--;
412 if (tok->count == 0) {
Daniel Veillard82cb3192003-10-29 13:39:15 +0000413 xmlMutexUnlock(tok->lock);
414 }
415 return;
416 }
Daniel Veillardb8478642001-10-12 17:29:10 +0000417#endif
418}
419
Daniel Veillardfde5b0b2007-02-12 17:31:53 +0000420/**
421 * xmlGlobalInitMutexLock
422 *
423 * Makes sure that the global initialization mutex is initialized and
424 * locks it.
425 */
426void
427__xmlGlobalInitMutexLock(void)
428{
429 /* Make sure the global init lock is initialized and then lock it. */
430#ifdef HAVE_PTHREAD_H
431 int err;
432
433 /* The mutex is statically initialized, so we just lock it. */
434 pthread_mutex_lock(&global_init_lock);
435#elif defined HAVE_WIN32_THREADS
436 LPCRITICAL_SECTION cs;
437
438 /* Create a new critical section */
439 if (global_init_lock == NULL) {
440 cs = malloc(sizeof(CRITICAL_SECTION));
441 InitializeCriticalSection(cs);
442
443 /* Swap it into the global_init_lock */
Rob Richardse967f0b2007-06-08 19:36:04 +0000444#ifdef InterlockedCompareExchangePointer
Daniel Veillardfde5b0b2007-02-12 17:31:53 +0000445 InterlockedCompareExchangePointer(&global_init_lock, cs, NULL);
Rob Richardse967f0b2007-06-08 19:36:04 +0000446#else /* Use older void* version */
447 InterlockedCompareExchange((void **)&global_init_lock, (void *)cs, NULL);
448#endif /* InterlockedCompareExchangePointer */
Daniel Veillardfde5b0b2007-02-12 17:31:53 +0000449
450 /* If another thread successfully recorded its critical
451 * section in the global_init_lock then discard the one
452 * allocated by this thread. */
453 if (global_init_lock != cs) {
Rob Richards91eb5602007-11-16 10:54:59 +0000454 DeleteCriticalSection(cs);
Daniel Veillardfde5b0b2007-02-12 17:31:53 +0000455 free(cs);
456 }
457 }
458
459 /* Lock the chosen critical section */
460 EnterCriticalSection(global_init_lock);
461#elif defined HAVE_BEOS_THREADS
462 int32 sem;
463
464 /* Allocate a new semaphore */
465 sem = create_sem(1, "xmlGlobalinitMutex");
466
467 while (global_init_lock == -1) {
468 if (atomic_add(&global_init_count, 1) == 0) {
469 global_init_lock = sem;
470 } else {
471 snooze(1);
472 atomic_add(&global_init_count, -1);
473 }
474 }
475
476 /* If another thread successfully recorded its critical
477 * section in the global_init_lock then discard the one
478 * allocated by this thread. */
479 if (global_init_lock != sem)
480 delete_sem(sem);
481
482 /* Acquire the chosen semaphore */
483 if (acquire_sem(global_init_lock) != B_NO_ERROR) {
484#ifdef DEBUG_THREADS
485 xmlGenericError(xmlGenericErrorContext, "xmlGlobalInitMutexLock():BeOS:Couldn't acquire semaphore\n");
486 exit();
487#endif
488 }
489#endif
490}
491
492void
493__xmlGlobalInitMutexUnlock(void)
494{
495#ifdef HAVE_PTHREAD_H
496 pthread_mutex_unlock(&global_init_lock);
497#elif defined HAVE_WIN32_THREADS
498 LeaveCriticalSection(global_init_lock);
499#elif defined HAVE_BEOS_THREADS
500 release_sem(global_init_lock);
501#endif
502}
503
Rob Richards91eb5602007-11-16 10:54:59 +0000504/**
505 * xmlGlobalInitMutexDestroy
506 *
507 * Makes sure that the global initialization mutex is destroyed before
508 * application termination.
509 */
510void __xmlGlobalInitMutexDestroy(void)
511{
512#if defined HAVE_WIN32_THREADS
513 if (global_init_lock != NULL)
514 {
515 DeleteCriticalSection(global_init_lock);
516 free(global_init_lock);
517 global_init_lock = NULL;
518 }
519#endif
520}
521
Daniel Veillardb8478642001-10-12 17:29:10 +0000522/************************************************************************
523 * *
524 * Per thread global state handling *
525 * *
526 ************************************************************************/
527
Daniel Veillard8bdb91d2001-10-31 17:52:43 +0000528#ifdef LIBXML_THREAD_ENABLED
Daniel Veillard01c3bd52004-10-22 13:16:10 +0000529#ifdef xmlLastError
530#undef xmlLastError
531#endif
Daniel Veillardb8478642001-10-12 17:29:10 +0000532/**
533 * xmlFreeGlobalState:
534 * @state: a thread global state
535 *
536 * xmlFreeGlobalState() is called when a thread terminates with a non-NULL
537 * global state. It is is used here to reclaim memory resources.
538 */
539static void
540xmlFreeGlobalState(void *state)
541{
Daniel Veillard01c3bd52004-10-22 13:16:10 +0000542 xmlGlobalState *gs = (xmlGlobalState *) state;
543
544 /* free any memory allocated in the thread's xmlLastError */
545 xmlResetError(&(gs->xmlLastError));
Daniel Veillardb8478642001-10-12 17:29:10 +0000546 free(state);
547}
548
549/**
550 * xmlNewGlobalState:
551 *
552 * xmlNewGlobalState() allocates a global state. This structure is used to
553 * hold all data for use by a thread when supporting backwards compatibility
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000554 * of libxml2 to pre-thread-safe behaviour.
Daniel Veillardb8478642001-10-12 17:29:10 +0000555 *
556 * Returns the newly allocated xmlGlobalStatePtr or NULL in case of error
557 */
558static xmlGlobalStatePtr
559xmlNewGlobalState(void)
560{
561 xmlGlobalState *gs;
562
563 gs = malloc(sizeof(xmlGlobalState));
564 if (gs == NULL)
565 return(NULL);
566
William M. Brack8b2c7f12002-11-22 05:07:29 +0000567 memset(gs, 0, sizeof(xmlGlobalState));
Daniel Veillardb8478642001-10-12 17:29:10 +0000568 xmlInitializeGlobalState(gs);
569 return (gs);
570}
Daniel Veillard8bdb91d2001-10-31 17:52:43 +0000571#endif /* LIBXML_THREAD_ENABLED */
Daniel Veillardb8478642001-10-12 17:29:10 +0000572
573
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000574#ifdef HAVE_WIN32_THREADS
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000575#if !defined(HAVE_COMPILER_TLS)
576#if defined(LIBXML_STATIC) && !defined(LIBXML_STATIC_FOR_DLL)
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000577typedef struct _xmlGlobalStateCleanupHelperParams
578{
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000579 HANDLE thread;
580 void *memory;
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000581} xmlGlobalStateCleanupHelperParams;
582
Daniel Veillardffa3c742005-07-21 13:24:09 +0000583static void XMLCDECL xmlGlobalStateCleanupHelper (void *p)
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000584{
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000585 xmlGlobalStateCleanupHelperParams *params = (xmlGlobalStateCleanupHelperParams *) p;
586 WaitForSingleObject(params->thread, INFINITE);
587 CloseHandle(params->thread);
588 xmlFreeGlobalState(params->memory);
589 free(params);
590 _endthread();
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000591}
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000592#else /* LIBXML_STATIC && !LIBXML_STATIC_FOR_DLL */
593
594typedef struct _xmlGlobalStateCleanupHelperParams
595{
596 void *memory;
597 struct _xmlGlobalStateCleanupHelperParams * prev;
598 struct _xmlGlobalStateCleanupHelperParams * next;
599} xmlGlobalStateCleanupHelperParams;
600
601static xmlGlobalStateCleanupHelperParams * cleanup_helpers_head = NULL;
602static CRITICAL_SECTION cleanup_helpers_cs;
603
604#endif /* LIBXMLSTATIC && !LIBXML_STATIC_FOR_DLL */
605#endif /* HAVE_COMPILER_TLS */
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000606#endif /* HAVE_WIN32_THREADS */
607
Daniel Veillard82cb3192003-10-29 13:39:15 +0000608#if defined HAVE_BEOS_THREADS
William M. Brackb1d53162003-11-18 06:54:40 +0000609/**
610 * xmlGlobalStateCleanup:
611 * @data: unused parameter
612 *
613 * Used for Beos only
614 */
Daniel Veillard82cb3192003-10-29 13:39:15 +0000615void xmlGlobalStateCleanup(void *data)
616{
617 void *globalval = tls_get(globalkey);
618 if (globalval != NULL)
619 xmlFreeGlobalState(globalval);
620}
621#endif
622
Daniel Veillard01c13b52002-12-10 15:19:08 +0000623/**
624 * xmlGetGlobalState:
625 *
626 * xmlGetGlobalState() is called to retrieve the global state for a thread.
627 *
628 * Returns the thread global state or NULL in case of error
629 */
Daniel Veillardb8478642001-10-12 17:29:10 +0000630xmlGlobalStatePtr
631xmlGetGlobalState(void)
632{
633#ifdef HAVE_PTHREAD_H
634 xmlGlobalState *globalval;
635
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000636 if (libxml_is_threaded == 0)
637 return(NULL);
638
Daniel Veillarde28313b2001-12-06 14:08:31 +0000639 pthread_once(&once_control, xmlOnceInit);
640
Daniel Veillardb8478642001-10-12 17:29:10 +0000641 if ((globalval = (xmlGlobalState *)
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000642 pthread_getspecific(globalkey)) == NULL) {
Daniel Veillardb8478642001-10-12 17:29:10 +0000643 xmlGlobalState *tsd = xmlNewGlobalState();
644
645 pthread_setspecific(globalkey, tsd);
646 return (tsd);
Daniel Veillard6f350292001-10-14 09:56:15 +0000647 }
648 return (globalval);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000649#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000650#if defined(HAVE_COMPILER_TLS)
651 if (!tlstate_inited) {
652 tlstate_inited = 1;
653 xmlInitializeGlobalState(&tlstate);
654 }
655 return &tlstate;
656#else /* HAVE_COMPILER_TLS */
657 xmlGlobalState *globalval;
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000658 xmlGlobalStateCleanupHelperParams * p;
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000659
Daniel Veillard62121e22005-02-24 15:38:52 +0000660 xmlOnceInit();
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000661#if defined(LIBXML_STATIC) && !defined(LIBXML_STATIC_FOR_DLL)
662 globalval = (xmlGlobalState *)TlsGetValue(globalkey);
663#else
664 p = (xmlGlobalStateCleanupHelperParams*)TlsGetValue(globalkey);
665 globalval = (xmlGlobalState *)(p ? p->memory : NULL);
666#endif
667 if (globalval == NULL) {
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000668 xmlGlobalState *tsd = xmlNewGlobalState();
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000669 p = (xmlGlobalStateCleanupHelperParams *) malloc(sizeof(xmlGlobalStateCleanupHelperParams));
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000670 p->memory = tsd;
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000671#if defined(LIBXML_STATIC) && !defined(LIBXML_STATIC_FOR_DLL)
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000672 DuplicateHandle(GetCurrentProcess(), GetCurrentThread(),
673 GetCurrentProcess(), &p->thread, 0, TRUE, DUPLICATE_SAME_ACCESS);
674 TlsSetValue(globalkey, tsd);
675 _beginthread(xmlGlobalStateCleanupHelper, 0, p);
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000676#else
677 EnterCriticalSection(&cleanup_helpers_cs);
678 if (cleanup_helpers_head != NULL) {
679 cleanup_helpers_head->prev = p;
680 }
681 p->next = cleanup_helpers_head;
682 p->prev = NULL;
683 cleanup_helpers_head = p;
684 TlsSetValue(globalkey, p);
685 LeaveCriticalSection(&cleanup_helpers_cs);
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000686#endif
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000687
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000688 return (tsd);
689 }
690 return (globalval);
691#endif /* HAVE_COMPILER_TLS */
Daniel Veillard82cb3192003-10-29 13:39:15 +0000692#elif defined HAVE_BEOS_THREADS
693 xmlGlobalState *globalval;
694
695 xmlOnceInit();
696
697 if ((globalval = (xmlGlobalState *)
698 tls_get(globalkey)) == NULL) {
699 xmlGlobalState *tsd = xmlNewGlobalState();
700
701 tls_set(globalkey, tsd);
702 on_exit_thread(xmlGlobalStateCleanup, NULL);
703 return (tsd);
704 }
705 return (globalval);
Daniel Veillard6f350292001-10-14 09:56:15 +0000706#else
707 return(NULL);
Daniel Veillardb8478642001-10-12 17:29:10 +0000708#endif
709}
710
Daniel Veillardb8478642001-10-12 17:29:10 +0000711/************************************************************************
712 * *
713 * Library wide thread interfaces *
714 * *
715 ************************************************************************/
716
717/**
Daniel Veillard3c01b1d2001-10-17 15:58:35 +0000718 * xmlGetThreadId:
719 *
720 * xmlGetThreadId() find the current thread ID number
721 *
722 * Returns the current thread ID number
723 */
724int
725xmlGetThreadId(void)
726{
727#ifdef HAVE_PTHREAD_H
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000728 if (libxml_is_threaded == 0)
729 return(0);
Daniel Veillard3c01b1d2001-10-17 15:58:35 +0000730 return((int) pthread_self());
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000731#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000732 return GetCurrentThreadId();
Daniel Veillard82cb3192003-10-29 13:39:15 +0000733#elif defined HAVE_BEOS_THREADS
734 return find_thread(NULL);
Daniel Veillard3c01b1d2001-10-17 15:58:35 +0000735#else
736 return((int) 0);
737#endif
738}
739
740/**
Daniel Veillard6f350292001-10-14 09:56:15 +0000741 * xmlIsMainThread:
742 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000743 * xmlIsMainThread() check whether the current thread is the main thread.
Daniel Veillard6f350292001-10-14 09:56:15 +0000744 *
745 * Returns 1 if the current thread is the main thread, 0 otherwise
746 */
747int
748xmlIsMainThread(void)
749{
Daniel Veillarde28313b2001-12-06 14:08:31 +0000750#ifdef HAVE_PTHREAD_H
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000751 if (libxml_is_threaded == -1)
752 xmlInitThreads();
753 if (libxml_is_threaded == 0)
754 return(1);
Daniel Veillarde28313b2001-12-06 14:08:31 +0000755 pthread_once(&once_control, xmlOnceInit);
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000756#elif defined HAVE_WIN32_THREADS
Daniel Veillard62121e22005-02-24 15:38:52 +0000757 xmlOnceInit ();
Daniel Veillard82cb3192003-10-29 13:39:15 +0000758#elif defined HAVE_BEOS_THREADS
Daniel Veillard62121e22005-02-24 15:38:52 +0000759 xmlOnceInit();
Daniel Veillarde28313b2001-12-06 14:08:31 +0000760#endif
Daniel Veillard6f350292001-10-14 09:56:15 +0000761
762#ifdef DEBUG_THREADS
763 xmlGenericError(xmlGenericErrorContext, "xmlIsMainThread()\n");
764#endif
765#ifdef HAVE_PTHREAD_H
766 return(mainthread == pthread_self());
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000767#elif defined HAVE_WIN32_THREADS
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000768 return(mainthread == GetCurrentThreadId ());
Daniel Veillard82cb3192003-10-29 13:39:15 +0000769#elif defined HAVE_BEOS_THREADS
770 return(mainthread == find_thread(NULL));
Daniel Veillard6f350292001-10-14 09:56:15 +0000771#else
772 return(1);
773#endif
774}
775
776/**
Daniel Veillardb8478642001-10-12 17:29:10 +0000777 * xmlLockLibrary:
778 *
779 * xmlLockLibrary() is used to take out a re-entrant lock on the libxml2
780 * library.
781 */
782void
783xmlLockLibrary(void)
784{
Daniel Veillard6f350292001-10-14 09:56:15 +0000785#ifdef DEBUG_THREADS
786 xmlGenericError(xmlGenericErrorContext, "xmlLockLibrary()\n");
787#endif
Daniel Veillardb8478642001-10-12 17:29:10 +0000788 xmlRMutexLock(xmlLibraryLock);
789}
790
791/**
792 * xmlUnlockLibrary:
793 *
794 * xmlUnlockLibrary() is used to release a re-entrant lock on the libxml2
795 * library.
796 */
797void
798xmlUnlockLibrary(void)
799{
Daniel Veillard6f350292001-10-14 09:56:15 +0000800#ifdef DEBUG_THREADS
801 xmlGenericError(xmlGenericErrorContext, "xmlUnlockLibrary()\n");
802#endif
Daniel Veillardb8478642001-10-12 17:29:10 +0000803 xmlRMutexUnlock(xmlLibraryLock);
804}
805
806/**
807 * xmlInitThreads:
808 *
809 * xmlInitThreads() is used to to initialize all the thread related
810 * data of the libxml2 library.
811 */
812void
813xmlInitThreads(void)
814{
Daniel Veillard6f350292001-10-14 09:56:15 +0000815#ifdef DEBUG_THREADS
816 xmlGenericError(xmlGenericErrorContext, "xmlInitThreads()\n");
817#endif
Daniel Veillardc790bf42003-10-11 10:50:10 +0000818#if defined(HAVE_WIN32_THREADS) && !defined(HAVE_COMPILER_TLS) && (!defined(LIBXML_STATIC) || defined(LIBXML_STATIC_FOR_DLL))
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000819 InitializeCriticalSection(&cleanup_helpers_cs);
820#endif
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000821#ifdef HAVE_PTHREAD_H
822 if (libxml_is_threaded == -1) {
823 if ((pthread_once != NULL) &&
824 (pthread_getspecific != NULL) &&
825 (pthread_setspecific != NULL) &&
826 (pthread_key_create != NULL) &&
827 (pthread_mutex_init != NULL) &&
828 (pthread_mutex_destroy != NULL) &&
829 (pthread_mutex_lock != NULL) &&
830 (pthread_mutex_unlock != NULL) &&
831 (pthread_cond_init != NULL) &&
832 (pthread_equal != NULL) &&
833 (pthread_self != NULL) &&
834 (pthread_key_create != NULL) &&
835 (pthread_cond_signal != NULL)) {
836 libxml_is_threaded = 1;
837/* fprintf(stderr, "Running multithreaded\n"); */
838 } else {
839/* fprintf(stderr, "Running without multithread\n"); */
840 libxml_is_threaded = 0;
841 }
842 }
843#endif
Daniel Veillardb8478642001-10-12 17:29:10 +0000844}
845
846/**
847 * xmlCleanupThreads:
848 *
849 * xmlCleanupThreads() is used to to cleanup all the thread related
850 * data of the libxml2 library once processing has ended.
851 */
852void
853xmlCleanupThreads(void)
854{
Daniel Veillard6f350292001-10-14 09:56:15 +0000855#ifdef DEBUG_THREADS
856 xmlGenericError(xmlGenericErrorContext, "xmlCleanupThreads()\n");
857#endif
Daniel Veillardc790bf42003-10-11 10:50:10 +0000858#if defined(HAVE_WIN32_THREADS) && !defined(HAVE_COMPILER_TLS) && (!defined(LIBXML_STATIC) || defined(LIBXML_STATIC_FOR_DLL))
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000859 if (globalkey != TLS_OUT_OF_INDEXES) {
860 xmlGlobalStateCleanupHelperParams * p;
861 EnterCriticalSection(&cleanup_helpers_cs);
862 p = cleanup_helpers_head;
863 while (p != NULL) {
864 xmlGlobalStateCleanupHelperParams * temp = p;
865 p = p->next;
866 xmlFreeGlobalState(temp->memory);
867 free(temp);
868 }
869 cleanup_helpers_head = 0;
870 LeaveCriticalSection(&cleanup_helpers_cs);
871 TlsFree(globalkey);
872 globalkey = TLS_OUT_OF_INDEXES;
873 }
874 DeleteCriticalSection(&cleanup_helpers_cs);
875#endif
Daniel Veillarde28313b2001-12-06 14:08:31 +0000876}
Daniel Veillard6f350292001-10-14 09:56:15 +0000877
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000878#ifdef LIBXML_THREAD_ENABLED
Daniel Veillarde28313b2001-12-06 14:08:31 +0000879/**
880 * xmlOnceInit
881 *
882 * xmlOnceInit() is used to initialize the value of mainthread for use
883 * in other routines. This function should only be called using
884 * pthread_once() in association with the once_control variable to ensure
885 * that the function is only called once. See man pthread_once for more
886 * details.
887 */
888static void
889xmlOnceInit(void) {
890#ifdef HAVE_PTHREAD_H
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000891 (void) pthread_key_create(&globalkey, xmlFreeGlobalState);
Daniel Veillarde28313b2001-12-06 14:08:31 +0000892 mainthread = pthread_self();
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000893#endif
894
895#if defined(HAVE_WIN32_THREADS)
Daniel Veillard62121e22005-02-24 15:38:52 +0000896 if (!run_once.done) {
Daniel Veillard36616dd2005-02-25 07:31:49 +0000897 if (InterlockedIncrement(&run_once.control) == 1)
Daniel Veillard62121e22005-02-24 15:38:52 +0000898 {
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000899#if !defined(HAVE_COMPILER_TLS)
Daniel Veillard62121e22005-02-24 15:38:52 +0000900 globalkey = TlsAlloc();
Igor Zlatkovicf2160a02002-10-31 15:58:42 +0000901#endif
Daniel Veillard62121e22005-02-24 15:38:52 +0000902 mainthread = GetCurrentThreadId();
903 run_once.done = 1;
904 }
905 else {
906 /* Another thread is working; give up our slice and
907 * wait until they're done. */
908 while (!run_once.done)
909 Sleep(0);
910 }
911 }
Daniel Veillarde28313b2001-12-06 14:08:31 +0000912#endif
Daniel Veillard82cb3192003-10-29 13:39:15 +0000913
914#ifdef HAVE_BEOS_THREADS
915 if (atomic_add(&run_once_init, 1) == 0) {
916 globalkey = tls_allocate();
917 tls_set(globalkey, NULL);
918 mainthread = find_thread(NULL);
919 } else
920 atomic_add(&run_once_init, -1);
921#endif
Daniel Veillardb8478642001-10-12 17:29:10 +0000922}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000923#endif
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000924
925/**
William M. Brack7a821652003-08-15 07:27:40 +0000926 * DllMain:
927 * @hinstDLL: handle to DLL instance
928 * @fdwReason: Reason code for entry
929 * @lpvReserved: generic pointer (depends upon reason code)
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000930 *
931 * Entry point for Windows library. It is being used to free thread-specific
932 * storage.
William M. Brack7a821652003-08-15 07:27:40 +0000933 *
934 * Returns TRUE always
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000935 */
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000936#if defined(HAVE_WIN32_THREADS) && !defined(HAVE_COMPILER_TLS) && (!defined(LIBXML_STATIC) || defined(LIBXML_STATIC_FOR_DLL))
937#if defined(LIBXML_STATIC_FOR_DLL)
Rob Richardse967f0b2007-06-08 19:36:04 +0000938BOOL XMLCALL xmlDllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000939#else
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000940BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000941#endif
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000942{
943 switch(fdwReason) {
944 case DLL_THREAD_DETACH:
945 if (globalkey != TLS_OUT_OF_INDEXES) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000946 xmlGlobalState *globalval = NULL;
947 xmlGlobalStateCleanupHelperParams * p =
948 (xmlGlobalStateCleanupHelperParams*)TlsGetValue(globalkey);
949 globalval = (xmlGlobalState *)(p ? p->memory : NULL);
950 if (globalval) {
951 xmlFreeGlobalState(globalval);
952 TlsSetValue(globalkey,NULL);
953 }
954 if (p)
955 {
956 EnterCriticalSection(&cleanup_helpers_cs);
957 if (p == cleanup_helpers_head)
958 cleanup_helpers_head = p->next;
959 else
960 p->prev->next = p->next;
961 if (p->next != NULL)
962 p->next->prev = p->prev;
963 LeaveCriticalSection(&cleanup_helpers_cs);
964 free(p);
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000965 }
966 }
967 break;
Igor Zlatkovicd58a42d2003-05-17 10:55:15 +0000968 }
969 return TRUE;
970}
971#endif
Daniel Veillard5d4644e2005-04-01 13:11:58 +0000972#define bottom_threads
973#include "elfgcchack.h"