blob: b9d6cae35333830e3ea72f766c5e2838ee43dac5 [file] [log] [blame]
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -08001/**
Patrick Scott60a4c352009-07-09 09:30:54 -04002 * threads.c: set of generic threading related routines
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -08003 *
4 * See Copyright for the status of this software.
5 *
6 * Gary Pennington <Gary.Pennington@uk.sun.com>
7 * daniel@veillard.com
8 */
9
10#define IN_LIBXML
11#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>
Selim Gurundf143a52012-03-05 14:35:53 -080029#elif defined HAVE_WIN32_THREADS
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -080030#include <windows.h>
31#ifndef HAVE_COMPILER_TLS
32#include <process.h>
33#endif
34#endif
35
36#ifdef HAVE_BEOS_THREADS
37#include <OS.h>
38#include <TLS.h>
39#endif
40
41#if defined(SOLARIS)
42#include <note.h>
43#endif
44
45/* #define DEBUG_THREADS */
46
47#ifdef HAVE_PTHREAD_H
48
49static int libxml_is_threaded = -1;
Xin Lie742c3a2017-03-02 10:59:49 -080050#if defined(__GNUC__) && defined(__GLIBC__)
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -080051#ifdef linux
52#if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || (__GNUC__ > 3)
53extern int pthread_once (pthread_once_t *__once_control,
54 void (*__init_routine) (void))
55 __attribute((weak));
56extern void *pthread_getspecific (pthread_key_t __key)
57 __attribute((weak));
58extern int pthread_setspecific (pthread_key_t __key,
59 __const void *__pointer)
60 __attribute((weak));
61extern int pthread_key_create (pthread_key_t *__key,
62 void (*__destr_function) (void *))
63 __attribute((weak));
Patrick Scott60a4c352009-07-09 09:30:54 -040064extern int pthread_key_delete (pthread_key_t __key)
65 __attribute((weak));
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -080066extern 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));
Patrick Scott60a4c352009-07-09 09:30:54 -040076extern int pthread_cond_destroy ()
77 __attribute((weak));
78extern int pthread_cond_wait ()
79 __attribute((weak));
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -080080extern int pthread_equal ()
81 __attribute((weak));
82extern pthread_t pthread_self ()
83 __attribute((weak));
84extern int pthread_key_create ()
85 __attribute((weak));
Patrick Scott60a4c352009-07-09 09:30:54 -040086extern int pthread_key_delete ()
87 __attribute((weak));
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -080088extern int pthread_cond_signal ()
89 __attribute((weak));
90#endif
91#endif /* linux */
Xin Lie742c3a2017-03-02 10:59:49 -080092#endif /* defined(__GNUC__) && defined(__GLIBC__) */
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -080093#endif /* HAVE_PTHREAD_H */
94
95/*
96 * TODO: this module still uses malloc/free and not xmlMalloc/xmlFree
97 * to avoid some crazyness since xmlMalloc/xmlFree may actually
98 * be hosted on allocated blocks needing them for the allocation ...
99 */
100
101/*
102 * xmlMutex are a simple mutual exception locks
103 */
104struct _xmlMutex {
105#ifdef HAVE_PTHREAD_H
106 pthread_mutex_t lock;
107#elif defined HAVE_WIN32_THREADS
108 HANDLE mutex;
109#elif defined HAVE_BEOS_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400110 sem_id sem;
111 thread_id tid;
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800112#else
113 int empty;
114#endif
115};
116
117/*
118 * xmlRMutex are reentrant mutual exception locks
119 */
120struct _xmlRMutex {
121#ifdef HAVE_PTHREAD_H
122 pthread_mutex_t lock;
Patrick Scott60a4c352009-07-09 09:30:54 -0400123 unsigned int held;
124 unsigned int waiters;
125 pthread_t tid;
126 pthread_cond_t cv;
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800127#elif defined HAVE_WIN32_THREADS
128 CRITICAL_SECTION cs;
129 unsigned int count;
130#elif defined HAVE_BEOS_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400131 xmlMutexPtr lock;
132 thread_id tid;
133 int32 count;
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800134#else
135 int empty;
136#endif
137};
Patrick Scott60a4c352009-07-09 09:30:54 -0400138
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800139/*
140 * This module still has some internal static data.
141 * - xmlLibraryLock a global lock
142 * - globalkey used for per-thread data
143 */
144
145#ifdef HAVE_PTHREAD_H
Patrick Scott60a4c352009-07-09 09:30:54 -0400146static pthread_key_t globalkey;
147static pthread_t mainthread;
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800148static pthread_once_t once_control = PTHREAD_ONCE_INIT;
Selim Gurun94442ad2013-12-30 18:23:42 -0800149static pthread_once_t once_control_init = PTHREAD_ONCE_INIT;
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800150static pthread_mutex_t global_init_lock = PTHREAD_MUTEX_INITIALIZER;
151#elif defined HAVE_WIN32_THREADS
152#if defined(HAVE_COMPILER_TLS)
153static __declspec(thread) xmlGlobalState tlstate;
154static __declspec(thread) int tlstate_inited = 0;
155#else /* HAVE_COMPILER_TLS */
156static DWORD globalkey = TLS_OUT_OF_INDEXES;
157#endif /* HAVE_COMPILER_TLS */
158static DWORD mainthread;
Patrick Scott60a4c352009-07-09 09:30:54 -0400159static struct {
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800160 DWORD done;
161 DWORD control;
Patrick Scott60a4c352009-07-09 09:30:54 -0400162} run_once = { 0, 0};
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800163static volatile LPCRITICAL_SECTION global_init_lock = NULL;
Patrick Scott60a4c352009-07-09 09:30:54 -0400164
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800165/* endif HAVE_WIN32_THREADS */
166#elif defined HAVE_BEOS_THREADS
167int32 globalkey = 0;
168thread_id mainthread = 0;
169int32 run_once_init = 0;
170static int32 global_init_lock = -1;
171static vint32 global_init_count = 0;
172#endif
173
Patrick Scott60a4c352009-07-09 09:30:54 -0400174static xmlRMutexPtr xmlLibraryLock = NULL;
175
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800176#ifdef LIBXML_THREAD_ENABLED
177static void xmlOnceInit(void);
178#endif
179
180/**
181 * xmlNewMutex:
182 *
183 * xmlNewMutex() is used to allocate a libxml2 token struct for use in
184 * synchronizing access to data.
185 *
186 * Returns a new simple mutex pointer or NULL in case of error
187 */
188xmlMutexPtr
189xmlNewMutex(void)
190{
191 xmlMutexPtr tok;
192
193 if ((tok = malloc(sizeof(xmlMutex))) == NULL)
194 return (NULL);
195#ifdef HAVE_PTHREAD_H
196 if (libxml_is_threaded != 0)
Patrick Scott60a4c352009-07-09 09:30:54 -0400197 pthread_mutex_init(&tok->lock, NULL);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800198#elif defined HAVE_WIN32_THREADS
199 tok->mutex = CreateMutex(NULL, FALSE, NULL);
200#elif defined HAVE_BEOS_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400201 if ((tok->sem = create_sem(1, "xmlMutex")) < B_OK) {
202 free(tok);
203 return NULL;
204 }
205 tok->tid = -1;
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800206#endif
207 return (tok);
208}
209
210/**
211 * xmlFreeMutex:
212 * @tok: the simple mutex
213 *
214 * xmlFreeMutex() is used to reclaim resources associated with a libxml2 token
215 * struct.
216 */
217void
218xmlFreeMutex(xmlMutexPtr tok)
219{
Patrick Scott60a4c352009-07-09 09:30:54 -0400220 if (tok == NULL)
221 return;
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800222
223#ifdef HAVE_PTHREAD_H
224 if (libxml_is_threaded != 0)
Patrick Scott60a4c352009-07-09 09:30:54 -0400225 pthread_mutex_destroy(&tok->lock);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800226#elif defined HAVE_WIN32_THREADS
227 CloseHandle(tok->mutex);
228#elif defined HAVE_BEOS_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400229 delete_sem(tok->sem);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800230#endif
231 free(tok);
232}
233
234/**
235 * xmlMutexLock:
236 * @tok: the simple mutex
237 *
238 * xmlMutexLock() is used to lock a libxml2 token.
239 */
240void
241xmlMutexLock(xmlMutexPtr tok)
242{
243 if (tok == NULL)
244 return;
245#ifdef HAVE_PTHREAD_H
246 if (libxml_is_threaded != 0)
Patrick Scott60a4c352009-07-09 09:30:54 -0400247 pthread_mutex_lock(&tok->lock);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800248#elif defined HAVE_WIN32_THREADS
249 WaitForSingleObject(tok->mutex, INFINITE);
250#elif defined HAVE_BEOS_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400251 if (acquire_sem(tok->sem) != B_NO_ERROR) {
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800252#ifdef DEBUG_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400253 xmlGenericError(xmlGenericErrorContext,
254 "xmlMutexLock():BeOS:Couldn't aquire semaphore\n");
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800255#endif
Patrick Scott60a4c352009-07-09 09:30:54 -0400256 }
257 tok->tid = find_thread(NULL);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800258#endif
259
260}
261
262/**
263 * xmlMutexUnlock:
264 * @tok: the simple mutex
265 *
266 * xmlMutexUnlock() is used to unlock a libxml2 token.
267 */
268void
269xmlMutexUnlock(xmlMutexPtr tok)
270{
271 if (tok == NULL)
272 return;
273#ifdef HAVE_PTHREAD_H
274 if (libxml_is_threaded != 0)
Patrick Scott60a4c352009-07-09 09:30:54 -0400275 pthread_mutex_unlock(&tok->lock);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800276#elif defined HAVE_WIN32_THREADS
277 ReleaseMutex(tok->mutex);
278#elif defined HAVE_BEOS_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400279 if (tok->tid == find_thread(NULL)) {
280 tok->tid = -1;
281 release_sem(tok->sem);
282 }
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800283#endif
284}
285
286/**
287 * xmlNewRMutex:
288 *
289 * xmlRNewMutex() is used to allocate a reentrant mutex for use in
290 * synchronizing access to data. token_r is a re-entrant lock and thus useful
291 * for synchronizing access to data structures that may be manipulated in a
292 * recursive fashion.
293 *
294 * Returns the new reentrant mutex pointer or NULL in case of error
295 */
296xmlRMutexPtr
297xmlNewRMutex(void)
298{
299 xmlRMutexPtr tok;
300
301 if ((tok = malloc(sizeof(xmlRMutex))) == NULL)
302 return (NULL);
303#ifdef HAVE_PTHREAD_H
304 if (libxml_is_threaded != 0) {
Patrick Scott60a4c352009-07-09 09:30:54 -0400305 pthread_mutex_init(&tok->lock, NULL);
306 tok->held = 0;
307 tok->waiters = 0;
308 pthread_cond_init(&tok->cv, NULL);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800309 }
310#elif defined HAVE_WIN32_THREADS
311 InitializeCriticalSection(&tok->cs);
312 tok->count = 0;
313#elif defined HAVE_BEOS_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400314 if ((tok->lock = xmlNewMutex()) == NULL) {
315 free(tok);
316 return NULL;
317 }
318 tok->count = 0;
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800319#endif
320 return (tok);
321}
322
323/**
324 * xmlFreeRMutex:
325 * @tok: the reentrant mutex
326 *
327 * xmlRFreeMutex() is used to reclaim resources associated with a
328 * reentrant mutex.
329 */
330void
331xmlFreeRMutex(xmlRMutexPtr tok ATTRIBUTE_UNUSED)
332{
333 if (tok == NULL)
334 return;
335#ifdef HAVE_PTHREAD_H
336 if (libxml_is_threaded != 0) {
Patrick Scott60a4c352009-07-09 09:30:54 -0400337 pthread_mutex_destroy(&tok->lock);
338 pthread_cond_destroy(&tok->cv);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800339 }
340#elif defined HAVE_WIN32_THREADS
341 DeleteCriticalSection(&tok->cs);
342#elif defined HAVE_BEOS_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400343 xmlFreeMutex(tok->lock);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800344#endif
345 free(tok);
346}
347
348/**
349 * xmlRMutexLock:
350 * @tok: the reentrant mutex
351 *
352 * xmlRMutexLock() is used to lock a libxml2 token_r.
353 */
354void
355xmlRMutexLock(xmlRMutexPtr tok)
356{
357 if (tok == NULL)
358 return;
359#ifdef HAVE_PTHREAD_H
360 if (libxml_is_threaded == 0)
361 return;
362
363 pthread_mutex_lock(&tok->lock);
364 if (tok->held) {
365 if (pthread_equal(tok->tid, pthread_self())) {
366 tok->held++;
367 pthread_mutex_unlock(&tok->lock);
368 return;
369 } else {
370 tok->waiters++;
371 while (tok->held)
372 pthread_cond_wait(&tok->cv, &tok->lock);
373 tok->waiters--;
374 }
375 }
376 tok->tid = pthread_self();
377 tok->held = 1;
378 pthread_mutex_unlock(&tok->lock);
379#elif defined HAVE_WIN32_THREADS
380 EnterCriticalSection(&tok->cs);
Xin Lie742c3a2017-03-02 10:59:49 -0800381 tok->count++;
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800382#elif defined HAVE_BEOS_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400383 if (tok->lock->tid == find_thread(NULL)) {
384 tok->count++;
385 return;
386 } else {
387 xmlMutexLock(tok->lock);
388 tok->count = 1;
389 }
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800390#endif
391}
392
393/**
394 * xmlRMutexUnlock:
395 * @tok: the reentrant mutex
396 *
397 * xmlRMutexUnlock() is used to unlock a libxml2 token_r.
398 */
399void
400xmlRMutexUnlock(xmlRMutexPtr tok ATTRIBUTE_UNUSED)
401{
402 if (tok == NULL)
403 return;
404#ifdef HAVE_PTHREAD_H
405 if (libxml_is_threaded == 0)
406 return;
Patrick Scott60a4c352009-07-09 09:30:54 -0400407
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800408 pthread_mutex_lock(&tok->lock);
409 tok->held--;
410 if (tok->held == 0) {
411 if (tok->waiters)
412 pthread_cond_signal(&tok->cv);
Selim Gurundf143a52012-03-05 14:35:53 -0800413 memset(&tok->tid, 0, sizeof(tok->tid));
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800414 }
415 pthread_mutex_unlock(&tok->lock);
416#elif defined HAVE_WIN32_THREADS
Xin Lie742c3a2017-03-02 10:59:49 -0800417 if (tok->count > 0) {
418 tok->count--;
Patrick Scott60a4c352009-07-09 09:30:54 -0400419 LeaveCriticalSection(&tok->cs);
Xin Lie742c3a2017-03-02 10:59:49 -0800420 }
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800421#elif defined HAVE_BEOS_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400422 if (tok->lock->tid == find_thread(NULL)) {
423 tok->count--;
424 if (tok->count == 0) {
425 xmlMutexUnlock(tok->lock);
426 }
427 return;
428 }
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800429#endif
430}
431
432/**
433 * xmlGlobalInitMutexLock
434 *
435 * Makes sure that the global initialization mutex is initialized and
436 * locks it.
437 */
438void
439__xmlGlobalInitMutexLock(void)
440{
441 /* Make sure the global init lock is initialized and then lock it. */
442#ifdef HAVE_PTHREAD_H
443 /* The mutex is statically initialized, so we just lock it. */
Selim Gurun94442ad2013-12-30 18:23:42 -0800444 if (pthread_mutex_lock != NULL)
Selim Gurundf143a52012-03-05 14:35:53 -0800445 pthread_mutex_lock(&global_init_lock);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800446#elif defined HAVE_WIN32_THREADS
447 LPCRITICAL_SECTION cs;
448
449 /* Create a new critical section */
450 if (global_init_lock == NULL) {
Patrick Scott60a4c352009-07-09 09:30:54 -0400451 cs = malloc(sizeof(CRITICAL_SECTION));
452 if (cs == NULL) {
453 xmlGenericError(xmlGenericErrorContext,
454 "xmlGlobalInitMutexLock: out of memory\n");
455 return;
456 }
457 InitializeCriticalSection(cs);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800458
Patrick Scott60a4c352009-07-09 09:30:54 -0400459 /* Swap it into the global_init_lock */
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800460#ifdef InterlockedCompareExchangePointer
Patrick Scott60a4c352009-07-09 09:30:54 -0400461 InterlockedCompareExchangePointer(&global_init_lock, cs, NULL);
462#else /* Use older void* version */
463 InterlockedCompareExchange((void **) &global_init_lock,
464 (void *) cs, NULL);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800465#endif /* InterlockedCompareExchangePointer */
466
Patrick Scott60a4c352009-07-09 09:30:54 -0400467 /* If another thread successfully recorded its critical
468 * section in the global_init_lock then discard the one
469 * allocated by this thread. */
470 if (global_init_lock != cs) {
471 DeleteCriticalSection(cs);
472 free(cs);
473 }
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800474 }
475
476 /* Lock the chosen critical section */
477 EnterCriticalSection(global_init_lock);
478#elif defined HAVE_BEOS_THREADS
479 int32 sem;
480
481 /* Allocate a new semaphore */
482 sem = create_sem(1, "xmlGlobalinitMutex");
483
484 while (global_init_lock == -1) {
Patrick Scott60a4c352009-07-09 09:30:54 -0400485 if (atomic_add(&global_init_count, 1) == 0) {
486 global_init_lock = sem;
487 } else {
488 snooze(1);
489 atomic_add(&global_init_count, -1);
490 }
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800491 }
492
493 /* If another thread successfully recorded its critical
494 * section in the global_init_lock then discard the one
495 * allocated by this thread. */
496 if (global_init_lock != sem)
Patrick Scott60a4c352009-07-09 09:30:54 -0400497 delete_sem(sem);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800498
499 /* Acquire the chosen semaphore */
500 if (acquire_sem(global_init_lock) != B_NO_ERROR) {
501#ifdef DEBUG_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400502 xmlGenericError(xmlGenericErrorContext,
503 "xmlGlobalInitMutexLock():BeOS:Couldn't acquire semaphore\n");
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800504#endif
505 }
506#endif
507}
508
509void
510__xmlGlobalInitMutexUnlock(void)
511{
512#ifdef HAVE_PTHREAD_H
Selim Gurun94442ad2013-12-30 18:23:42 -0800513 if (pthread_mutex_unlock != NULL)
Selim Gurundf143a52012-03-05 14:35:53 -0800514 pthread_mutex_unlock(&global_init_lock);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800515#elif defined HAVE_WIN32_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400516 if (global_init_lock != NULL) {
517 LeaveCriticalSection(global_init_lock);
518 }
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800519#elif defined HAVE_BEOS_THREADS
520 release_sem(global_init_lock);
521#endif
522}
523
524/**
525 * xmlGlobalInitMutexDestroy
526 *
527 * Makes sure that the global initialization mutex is destroyed before
528 * application termination.
529 */
Patrick Scott60a4c352009-07-09 09:30:54 -0400530void
531__xmlGlobalInitMutexDestroy(void)
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800532{
Selim Gurundf143a52012-03-05 14:35:53 -0800533#ifdef HAVE_PTHREAD_H
534#elif defined HAVE_WIN32_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400535 if (global_init_lock != NULL) {
536 DeleteCriticalSection(global_init_lock);
537 free(global_init_lock);
538 global_init_lock = NULL;
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800539 }
540#endif
541}
542
543/************************************************************************
544 * *
545 * Per thread global state handling *
546 * *
547 ************************************************************************/
548
549#ifdef LIBXML_THREAD_ENABLED
550#ifdef xmlLastError
551#undef xmlLastError
552#endif
Patrick Scott60a4c352009-07-09 09:30:54 -0400553
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800554/**
555 * xmlFreeGlobalState:
556 * @state: a thread global state
557 *
558 * xmlFreeGlobalState() is called when a thread terminates with a non-NULL
559 * global state. It is is used here to reclaim memory resources.
560 */
561static void
562xmlFreeGlobalState(void *state)
563{
564 xmlGlobalState *gs = (xmlGlobalState *) state;
565
566 /* free any memory allocated in the thread's xmlLastError */
567 xmlResetError(&(gs->xmlLastError));
568 free(state);
569}
570
571/**
572 * xmlNewGlobalState:
573 *
574 * xmlNewGlobalState() allocates a global state. This structure is used to
575 * hold all data for use by a thread when supporting backwards compatibility
576 * of libxml2 to pre-thread-safe behaviour.
577 *
578 * Returns the newly allocated xmlGlobalStatePtr or NULL in case of error
579 */
580static xmlGlobalStatePtr
581xmlNewGlobalState(void)
582{
583 xmlGlobalState *gs;
Patrick Scott60a4c352009-07-09 09:30:54 -0400584
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800585 gs = malloc(sizeof(xmlGlobalState));
Patrick Scott60a4c352009-07-09 09:30:54 -0400586 if (gs == NULL) {
587 xmlGenericError(xmlGenericErrorContext,
588 "xmlGetGlobalState: out of memory\n");
589 return (NULL);
590 }
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800591
592 memset(gs, 0, sizeof(xmlGlobalState));
593 xmlInitializeGlobalState(gs);
594 return (gs);
595}
596#endif /* LIBXML_THREAD_ENABLED */
597
Selim Gurundf143a52012-03-05 14:35:53 -0800598#ifdef HAVE_PTHREAD_H
599#elif defined HAVE_WIN32_THREADS
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800600#if !defined(HAVE_COMPILER_TLS)
601#if defined(LIBXML_STATIC) && !defined(LIBXML_STATIC_FOR_DLL)
Patrick Scott60a4c352009-07-09 09:30:54 -0400602typedef struct _xmlGlobalStateCleanupHelperParams {
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800603 HANDLE thread;
604 void *memory;
605} xmlGlobalStateCleanupHelperParams;
606
Patrick Scott60a4c352009-07-09 09:30:54 -0400607static void XMLCDECL
608xmlGlobalStateCleanupHelper(void *p)
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800609{
Patrick Scott60a4c352009-07-09 09:30:54 -0400610 xmlGlobalStateCleanupHelperParams *params =
611 (xmlGlobalStateCleanupHelperParams *) p;
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800612 WaitForSingleObject(params->thread, INFINITE);
613 CloseHandle(params->thread);
614 xmlFreeGlobalState(params->memory);
615 free(params);
616 _endthread();
617}
618#else /* LIBXML_STATIC && !LIBXML_STATIC_FOR_DLL */
619
Patrick Scott60a4c352009-07-09 09:30:54 -0400620typedef struct _xmlGlobalStateCleanupHelperParams {
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800621 void *memory;
Patrick Scott60a4c352009-07-09 09:30:54 -0400622 struct _xmlGlobalStateCleanupHelperParams *prev;
623 struct _xmlGlobalStateCleanupHelperParams *next;
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800624} xmlGlobalStateCleanupHelperParams;
625
Patrick Scott60a4c352009-07-09 09:30:54 -0400626static xmlGlobalStateCleanupHelperParams *cleanup_helpers_head = NULL;
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800627static CRITICAL_SECTION cleanup_helpers_cs;
628
629#endif /* LIBXMLSTATIC && !LIBXML_STATIC_FOR_DLL */
630#endif /* HAVE_COMPILER_TLS */
631#endif /* HAVE_WIN32_THREADS */
632
633#if defined HAVE_BEOS_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400634
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800635/**
636 * xmlGlobalStateCleanup:
637 * @data: unused parameter
638 *
639 * Used for Beos only
640 */
Patrick Scott60a4c352009-07-09 09:30:54 -0400641void
642xmlGlobalStateCleanup(void *data)
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800643{
Patrick Scott60a4c352009-07-09 09:30:54 -0400644 void *globalval = tls_get(globalkey);
645
646 if (globalval != NULL)
647 xmlFreeGlobalState(globalval);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800648}
649#endif
650
651/**
652 * xmlGetGlobalState:
653 *
654 * xmlGetGlobalState() is called to retrieve the global state for a thread.
655 *
656 * Returns the thread global state or NULL in case of error
657 */
658xmlGlobalStatePtr
659xmlGetGlobalState(void)
660{
661#ifdef HAVE_PTHREAD_H
662 xmlGlobalState *globalval;
663
664 if (libxml_is_threaded == 0)
Patrick Scott60a4c352009-07-09 09:30:54 -0400665 return (NULL);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800666
667 pthread_once(&once_control, xmlOnceInit);
668
669 if ((globalval = (xmlGlobalState *)
Patrick Scott60a4c352009-07-09 09:30:54 -0400670 pthread_getspecific(globalkey)) == NULL) {
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800671 xmlGlobalState *tsd = xmlNewGlobalState();
Patrick Scott60a4c352009-07-09 09:30:54 -0400672 if (tsd == NULL)
673 return(NULL);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800674
675 pthread_setspecific(globalkey, tsd);
676 return (tsd);
677 }
678 return (globalval);
679#elif defined HAVE_WIN32_THREADS
680#if defined(HAVE_COMPILER_TLS)
681 if (!tlstate_inited) {
Patrick Scott60a4c352009-07-09 09:30:54 -0400682 tlstate_inited = 1;
683 xmlInitializeGlobalState(&tlstate);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800684 }
685 return &tlstate;
686#else /* HAVE_COMPILER_TLS */
687 xmlGlobalState *globalval;
Patrick Scott60a4c352009-07-09 09:30:54 -0400688 xmlGlobalStateCleanupHelperParams *p;
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800689
690 xmlOnceInit();
691#if defined(LIBXML_STATIC) && !defined(LIBXML_STATIC_FOR_DLL)
Patrick Scott60a4c352009-07-09 09:30:54 -0400692 globalval = (xmlGlobalState *) TlsGetValue(globalkey);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800693#else
Patrick Scott60a4c352009-07-09 09:30:54 -0400694 p = (xmlGlobalStateCleanupHelperParams *) TlsGetValue(globalkey);
695 globalval = (xmlGlobalState *) (p ? p->memory : NULL);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800696#endif
697 if (globalval == NULL) {
Patrick Scott60a4c352009-07-09 09:30:54 -0400698 xmlGlobalState *tsd = xmlNewGlobalState();
699
700 if (tsd == NULL)
701 return(NULL);
702 p = (xmlGlobalStateCleanupHelperParams *)
703 malloc(sizeof(xmlGlobalStateCleanupHelperParams));
704 if (p == NULL) {
705 xmlGenericError(xmlGenericErrorContext,
706 "xmlGetGlobalState: out of memory\n");
707 xmlFreeGlobalState(tsd);
708 return(NULL);
709 }
710 p->memory = tsd;
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800711#if defined(LIBXML_STATIC) && !defined(LIBXML_STATIC_FOR_DLL)
Patrick Scott60a4c352009-07-09 09:30:54 -0400712 DuplicateHandle(GetCurrentProcess(), GetCurrentThread(),
713 GetCurrentProcess(), &p->thread, 0, TRUE,
714 DUPLICATE_SAME_ACCESS);
715 TlsSetValue(globalkey, tsd);
716 _beginthread(xmlGlobalStateCleanupHelper, 0, p);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800717#else
Patrick Scott60a4c352009-07-09 09:30:54 -0400718 EnterCriticalSection(&cleanup_helpers_cs);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800719 if (cleanup_helpers_head != NULL) {
720 cleanup_helpers_head->prev = p;
721 }
Patrick Scott60a4c352009-07-09 09:30:54 -0400722 p->next = cleanup_helpers_head;
723 p->prev = NULL;
724 cleanup_helpers_head = p;
725 TlsSetValue(globalkey, p);
726 LeaveCriticalSection(&cleanup_helpers_cs);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800727#endif
728
Patrick Scott60a4c352009-07-09 09:30:54 -0400729 return (tsd);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800730 }
731 return (globalval);
732#endif /* HAVE_COMPILER_TLS */
733#elif defined HAVE_BEOS_THREADS
734 xmlGlobalState *globalval;
735
736 xmlOnceInit();
737
Patrick Scott60a4c352009-07-09 09:30:54 -0400738 if ((globalval = (xmlGlobalState *) tls_get(globalkey)) == NULL) {
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800739 xmlGlobalState *tsd = xmlNewGlobalState();
Patrick Scott60a4c352009-07-09 09:30:54 -0400740 if (tsd == NULL)
741 return (NULL);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800742
743 tls_set(globalkey, tsd);
744 on_exit_thread(xmlGlobalStateCleanup, NULL);
745 return (tsd);
746 }
747 return (globalval);
748#else
Patrick Scott60a4c352009-07-09 09:30:54 -0400749 return (NULL);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800750#endif
751}
752
753/************************************************************************
754 * *
755 * Library wide thread interfaces *
756 * *
757 ************************************************************************/
758
759/**
760 * xmlGetThreadId:
761 *
762 * xmlGetThreadId() find the current thread ID number
Selim Gurundf143a52012-03-05 14:35:53 -0800763 * Note that this is likely to be broken on some platforms using pthreads
764 * as the specification doesn't mandate pthread_t to be an integer type
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800765 *
766 * Returns the current thread ID number
767 */
768int
769xmlGetThreadId(void)
770{
771#ifdef HAVE_PTHREAD_H
Selim Gurundf143a52012-03-05 14:35:53 -0800772 pthread_t id;
773 int ret;
774
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800775 if (libxml_is_threaded == 0)
Patrick Scott60a4c352009-07-09 09:30:54 -0400776 return (0);
Selim Gurundf143a52012-03-05 14:35:53 -0800777 id = pthread_self();
778 /* horrible but preserves compat, see warning above */
779 memcpy(&ret, &id, sizeof(ret));
780 return (ret);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800781#elif defined HAVE_WIN32_THREADS
782 return GetCurrentThreadId();
783#elif defined HAVE_BEOS_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400784 return find_thread(NULL);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800785#else
Patrick Scott60a4c352009-07-09 09:30:54 -0400786 return ((int) 0);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800787#endif
788}
789
790/**
791 * xmlIsMainThread:
792 *
793 * xmlIsMainThread() check whether the current thread is the main thread.
794 *
795 * Returns 1 if the current thread is the main thread, 0 otherwise
796 */
797int
798xmlIsMainThread(void)
799{
800#ifdef HAVE_PTHREAD_H
801 if (libxml_is_threaded == -1)
802 xmlInitThreads();
803 if (libxml_is_threaded == 0)
Patrick Scott60a4c352009-07-09 09:30:54 -0400804 return (1);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800805 pthread_once(&once_control, xmlOnceInit);
806#elif defined HAVE_WIN32_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400807 xmlOnceInit();
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800808#elif defined HAVE_BEOS_THREADS
809 xmlOnceInit();
810#endif
Patrick Scott60a4c352009-07-09 09:30:54 -0400811
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800812#ifdef DEBUG_THREADS
813 xmlGenericError(xmlGenericErrorContext, "xmlIsMainThread()\n");
814#endif
815#ifdef HAVE_PTHREAD_H
Selim Gurundf143a52012-03-05 14:35:53 -0800816 return (pthread_equal(mainthread,pthread_self()));
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800817#elif defined HAVE_WIN32_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400818 return (mainthread == GetCurrentThreadId());
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800819#elif defined HAVE_BEOS_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400820 return (mainthread == find_thread(NULL));
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800821#else
Patrick Scott60a4c352009-07-09 09:30:54 -0400822 return (1);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800823#endif
824}
825
826/**
827 * xmlLockLibrary:
828 *
829 * xmlLockLibrary() is used to take out a re-entrant lock on the libxml2
830 * library.
831 */
832void
833xmlLockLibrary(void)
834{
835#ifdef DEBUG_THREADS
836 xmlGenericError(xmlGenericErrorContext, "xmlLockLibrary()\n");
837#endif
838 xmlRMutexLock(xmlLibraryLock);
839}
840
841/**
842 * xmlUnlockLibrary:
843 *
844 * xmlUnlockLibrary() is used to release a re-entrant lock on the libxml2
845 * library.
846 */
847void
848xmlUnlockLibrary(void)
849{
850#ifdef DEBUG_THREADS
851 xmlGenericError(xmlGenericErrorContext, "xmlUnlockLibrary()\n");
852#endif
853 xmlRMutexUnlock(xmlLibraryLock);
854}
855
856/**
857 * xmlInitThreads:
858 *
859 * xmlInitThreads() is used to to initialize all the thread related
860 * data of the libxml2 library.
861 */
862void
863xmlInitThreads(void)
864{
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800865#ifdef HAVE_PTHREAD_H
866 if (libxml_is_threaded == -1) {
867 if ((pthread_once != NULL) &&
Patrick Scott60a4c352009-07-09 09:30:54 -0400868 (pthread_getspecific != NULL) &&
869 (pthread_setspecific != NULL) &&
870 (pthread_key_create != NULL) &&
871 (pthread_key_delete != NULL) &&
872 (pthread_mutex_init != NULL) &&
873 (pthread_mutex_destroy != NULL) &&
874 (pthread_mutex_lock != NULL) &&
875 (pthread_mutex_unlock != NULL) &&
876 (pthread_cond_init != NULL) &&
877 (pthread_cond_destroy != NULL) &&
878 (pthread_cond_wait != NULL) &&
879 (pthread_equal != NULL) &&
880 (pthread_self != NULL) &&
881 (pthread_cond_signal != NULL)) {
882 libxml_is_threaded = 1;
883
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800884/* fprintf(stderr, "Running multithreaded\n"); */
Patrick Scott60a4c352009-07-09 09:30:54 -0400885 } else {
886
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800887/* fprintf(stderr, "Running without multithread\n"); */
Patrick Scott60a4c352009-07-09 09:30:54 -0400888 libxml_is_threaded = 0;
889 }
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800890 }
Selim Gurundf143a52012-03-05 14:35:53 -0800891#elif defined(HAVE_WIN32_THREADS) && !defined(HAVE_COMPILER_TLS) && (!defined(LIBXML_STATIC) || defined(LIBXML_STATIC_FOR_DLL))
892 InitializeCriticalSection(&cleanup_helpers_cs);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800893#endif
894}
895
896/**
897 * xmlCleanupThreads:
898 *
899 * xmlCleanupThreads() is used to to cleanup all the thread related
900 * data of the libxml2 library once processing has ended.
Selim Gurundf143a52012-03-05 14:35:53 -0800901 *
902 * WARNING: if your application is multithreaded or has plugin support
903 * calling this may crash the application if another thread or
904 * a plugin is still using libxml2. It's sometimes very hard to
905 * guess if libxml2 is in use in the application, some libraries
906 * or plugins may use it without notice. In case of doubt abstain
907 * from calling this function or do it just before calling exit()
908 * to avoid leak reports from valgrind !
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800909 */
910void
911xmlCleanupThreads(void)
912{
913#ifdef DEBUG_THREADS
914 xmlGenericError(xmlGenericErrorContext, "xmlCleanupThreads()\n");
915#endif
Selim Gurundf143a52012-03-05 14:35:53 -0800916#ifdef HAVE_PTHREAD_H
917 if ((libxml_is_threaded) && (pthread_key_delete != NULL))
918 pthread_key_delete(globalkey);
Selim Gurun94442ad2013-12-30 18:23:42 -0800919 once_control = once_control_init;
Selim Gurundf143a52012-03-05 14:35:53 -0800920#elif defined(HAVE_WIN32_THREADS) && !defined(HAVE_COMPILER_TLS) && (!defined(LIBXML_STATIC) || defined(LIBXML_STATIC_FOR_DLL))
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800921 if (globalkey != TLS_OUT_OF_INDEXES) {
Patrick Scott60a4c352009-07-09 09:30:54 -0400922 xmlGlobalStateCleanupHelperParams *p;
923
924 EnterCriticalSection(&cleanup_helpers_cs);
925 p = cleanup_helpers_head;
926 while (p != NULL) {
927 xmlGlobalStateCleanupHelperParams *temp = p;
928
929 p = p->next;
930 xmlFreeGlobalState(temp->memory);
931 free(temp);
932 }
933 cleanup_helpers_head = 0;
934 LeaveCriticalSection(&cleanup_helpers_cs);
935 TlsFree(globalkey);
936 globalkey = TLS_OUT_OF_INDEXES;
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800937 }
938 DeleteCriticalSection(&cleanup_helpers_cs);
939#endif
940}
941
942#ifdef LIBXML_THREAD_ENABLED
Patrick Scott60a4c352009-07-09 09:30:54 -0400943
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800944/**
945 * xmlOnceInit
946 *
947 * xmlOnceInit() is used to initialize the value of mainthread for use
948 * in other routines. This function should only be called using
949 * pthread_once() in association with the once_control variable to ensure
950 * that the function is only called once. See man pthread_once for more
951 * details.
952 */
953static void
Patrick Scott60a4c352009-07-09 09:30:54 -0400954xmlOnceInit(void)
955{
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800956#ifdef HAVE_PTHREAD_H
957 (void) pthread_key_create(&globalkey, xmlFreeGlobalState);
958 mainthread = pthread_self();
Selim Gurun94442ad2013-12-30 18:23:42 -0800959 __xmlInitializeDict();
Selim Gurundf143a52012-03-05 14:35:53 -0800960#elif defined(HAVE_WIN32_THREADS)
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800961 if (!run_once.done) {
Patrick Scott60a4c352009-07-09 09:30:54 -0400962 if (InterlockedIncrement(&run_once.control) == 1) {
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800963#if !defined(HAVE_COMPILER_TLS)
964 globalkey = TlsAlloc();
965#endif
966 mainthread = GetCurrentThreadId();
Selim Gurun94442ad2013-12-30 18:23:42 -0800967 __xmlInitializeDict();
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800968 run_once.done = 1;
Patrick Scott60a4c352009-07-09 09:30:54 -0400969 } else {
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800970 /* Another thread is working; give up our slice and
971 * wait until they're done. */
972 while (!run_once.done)
973 Sleep(0);
974 }
975 }
Selim Gurundf143a52012-03-05 14:35:53 -0800976#elif defined HAVE_BEOS_THREADS
Patrick Scott60a4c352009-07-09 09:30:54 -0400977 if (atomic_add(&run_once_init, 1) == 0) {
978 globalkey = tls_allocate();
979 tls_set(globalkey, NULL);
980 mainthread = find_thread(NULL);
Selim Gurun94442ad2013-12-30 18:23:42 -0800981 __xmlInitializeDict();
Patrick Scott60a4c352009-07-09 09:30:54 -0400982 } else
983 atomic_add(&run_once_init, -1);
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -0800984#endif
985}
986#endif
987
988/**
989 * DllMain:
990 * @hinstDLL: handle to DLL instance
991 * @fdwReason: Reason code for entry
992 * @lpvReserved: generic pointer (depends upon reason code)
993 *
994 * Entry point for Windows library. It is being used to free thread-specific
995 * storage.
996 *
997 * Returns TRUE always
998 */
Selim Gurundf143a52012-03-05 14:35:53 -0800999#ifdef HAVE_PTHREAD_H
1000#elif defined(HAVE_WIN32_THREADS) && !defined(HAVE_COMPILER_TLS) && (!defined(LIBXML_STATIC) || defined(LIBXML_STATIC_FOR_DLL))
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -08001001#if defined(LIBXML_STATIC_FOR_DLL)
Patrick Scott60a4c352009-07-09 09:30:54 -04001002BOOL XMLCALL
1003xmlDllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -08001004#else
Patrick Scott60a4c352009-07-09 09:30:54 -04001005BOOL WINAPI
1006DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -08001007#endif
1008{
Patrick Scott60a4c352009-07-09 09:30:54 -04001009 switch (fdwReason) {
1010 case DLL_THREAD_DETACH:
1011 if (globalkey != TLS_OUT_OF_INDEXES) {
1012 xmlGlobalState *globalval = NULL;
1013 xmlGlobalStateCleanupHelperParams *p =
1014 (xmlGlobalStateCleanupHelperParams *)
1015 TlsGetValue(globalkey);
1016 globalval = (xmlGlobalState *) (p ? p->memory : NULL);
1017 if (globalval) {
1018 xmlFreeGlobalState(globalval);
1019 TlsSetValue(globalkey, NULL);
1020 }
1021 if (p) {
1022 EnterCriticalSection(&cleanup_helpers_cs);
1023 if (p == cleanup_helpers_head)
1024 cleanup_helpers_head = p->next;
1025 else
1026 p->prev->next = p->next;
1027 if (p->next != NULL)
1028 p->next->prev = p->prev;
1029 LeaveCriticalSection(&cleanup_helpers_cs);
1030 free(p);
1031 }
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -08001032 }
Patrick Scott60a4c352009-07-09 09:30:54 -04001033 break;
The Android Open Source Projectab4e2e92009-03-03 19:30:06 -08001034 }
1035 return TRUE;
1036}
1037#endif
1038#define bottom_threads
1039#include "elfgcchack.h"