windows XP threads: fix hilariously obvious race
[platform/upstream/glib.git] / glib / gthread-win32.c
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * gthread.c: solaris thread system implementation
5  * Copyright 1998-2001 Sebastian Wilhelmi; University of Karlsruhe
6  * Copyright 2001 Hans Breuer
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 /*
25  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
26  * file for a list of people on the GLib Team.  See the ChangeLog
27  * files for a list of changes.  These files are distributed with
28  * GLib at ftp://ftp.gtk.org/pub/gtk/.
29  */
30
31 /* The GMutex and GCond implementations in this file are some of the
32  * lowest-level code in GLib.  All other parts of GLib (messages,
33  * memory, slices, etc) assume that they can freely use these facilities
34  * without risking recursion.
35  *
36  * As such, these functions are NOT permitted to call any other part of
37  * GLib.
38  *
39  * The thread manipulation functions (create, exit, join, etc.) have
40  * more freedom -- they can do as they please.
41  */
42
43 #include "config.h"
44
45 #include "glib.h"
46 #include "gthread.h"
47 #include "gthreadprivate.h"
48 #include "gslice.h"
49
50 #include <windows.h>
51
52 #include <process.h>
53 #include <stdlib.h>
54 #include <stdio.h>
55
56 static void
57 g_thread_abort (gint         status,
58                 const gchar *function)
59 {
60   fprintf (stderr, "GLib (gthread-win32.c): Unexpected error from C library during '%s': %s.  Aborting.\n",
61            strerror (status), function);
62   abort ();
63 }
64
65 /* Starting with Vista and Windows 2008, we have access to the
66  * CONDITION_VARIABLE and SRWLock primatives on Windows, which are
67  * pretty reasonable approximations of the primatives specified in
68  * POSIX 2001 (pthread_cond_t and pthread_mutex_t respectively).
69  *
70  * Both of these types are structs containing a single pointer.  That
71  * pointer is used as an atomic bitfield to support user-space mutexes
72  * that only get the kernel involved in cases of contention (similar
73  * to how futex()-based mutexes work on Linux).  The biggest advantage
74  * of these new types is that they can be statically initialised to
75  * zero.  That means that they are completely ABI compatible with our
76  * GMutex and GCond APIs.
77  *
78  * Unfortunately, Windows XP lacks these facilities and GLib still
79  * needs to support Windows XP.  Our approach here is as follows:
80  *
81  *   - avoid depending on structure declarations at compile-time by
82  *     declaring our own GMutex and GCond strutures to be
83  *     ABI-compatible with SRWLock and CONDITION_VARIABLE and using
84  *     those instead
85  *
86  *   - avoid a hard dependency on the symbols used to manipulate these
87  *     structures by doing a dynamic lookup of those symbols at
88  *     runtime
89  *
90  *   - if the symbols are not available, emulate them using other
91  *     primatives
92  *
93  * Using this approach also allows us to easily build a GLib that lacks
94  * support for Windows XP or to remove this code entirely when XP is no
95  * longer supported (end of line is currently April 8, 2014).
96  */
97 typedef struct
98 {
99   void     (__stdcall * CallThisOnThreadExit)        (void);              /* fake */
100
101   void     (__stdcall * InitializeSRWLock)           (gpointer lock);
102   void     (__stdcall * DeleteSRWLock)               (gpointer lock);     /* fake */
103   void     (__stdcall * AcquireSRWLockExclusive)     (gpointer lock);
104   BOOLEAN  (__stdcall * TryAcquireSRWLockExclusive)  (gpointer lock);
105   void     (__stdcall * ReleaseSRWLockExclusive)     (gpointer lock);
106   void     (__stdcall * AcquireSRWLockShared)        (gpointer lock);
107   BOOLEAN  (__stdcall * TryAcquireSRWLockShared)     (gpointer lock);
108   void     (__stdcall * ReleaseSRWLockShared)        (gpointer lock);
109
110   void     (__stdcall * InitializeConditionVariable) (gpointer cond);
111   void     (__stdcall * DeleteConditionVariable)     (gpointer cond);     /* fake */
112   BOOL     (__stdcall * SleepConditionVariableSRW)   (gpointer cond,
113                                                       gpointer lock,
114                                                       DWORD    timeout,
115                                                       ULONG    flags);
116   void     (__stdcall * WakeAllConditionVariable)    (gpointer cond);
117   void     (__stdcall * WakeConditionVariable)       (gpointer cond);
118 } GThreadImplVtable;
119
120 static GThreadImplVtable g_thread_impl_vtable;
121
122 /* {{{1 GMutex */
123 void
124 g_mutex_init (GMutex *mutex)
125 {
126   g_thread_impl_vtable.InitializeSRWLock (mutex);
127 }
128
129 void
130 g_mutex_clear (GMutex *mutex)
131 {
132   if (g_thread_impl_vtable.DeleteSRWLock != NULL)
133     g_thread_impl_vtable.DeleteSRWLock (mutex);
134 }
135
136 void
137 g_mutex_lock (GMutex *mutex)
138 {
139   g_thread_impl_vtable.AcquireSRWLockExclusive (mutex);
140 }
141
142 gboolean
143 g_mutex_trylock (GMutex *mutex)
144 {
145   return g_thread_impl_vtable.TryAcquireSRWLockExclusive (mutex);
146 }
147
148 void
149 g_mutex_unlock (GMutex *mutex)
150 {
151   g_thread_impl_vtable.ReleaseSRWLockExclusive (mutex);
152 }
153
154 /* {{{1 GRecMutex */
155
156 static CRITICAL_SECTION *
157 g_rec_mutex_impl_new (void)
158 {
159   CRITICAL_SECTION *cs;
160
161   cs = g_slice_new (CRITICAL_SECTION);
162   InitializeCriticalSection (cs);
163
164   return cs;
165 }
166
167 static void
168 g_rec_mutex_impl_free (CRITICAL_SECTION *cs)
169 {
170   DeleteCriticalSection (cs);
171   g_slice_free (CRITICAL_SECTION, cs);
172 }
173
174 static CRITICAL_SECTION *
175 g_rec_mutex_get_impl (GRecMutex *mutex)
176 {
177   CRITICAL_SECTION *impl = mutex->p;
178
179   if G_UNLIKELY (mutex->p == NULL)
180     {
181       impl = g_rec_mutex_impl_new ();
182       if (InterlockedCompareExchangePointer (&mutex->p, impl, NULL) != NULL)
183         g_rec_mutex_impl_free (impl);
184       impl = mutex->p;
185     }
186
187   return impl;
188 }
189
190 void
191 g_rec_mutex_init (GRecMutex *mutex)
192 {
193   mutex->p = g_rec_mutex_impl_new ();
194 }
195
196 void
197 g_rec_mutex_clear (GRecMutex *mutex)
198 {
199   g_rec_mutex_impl_free (mutex->p);
200 }
201
202 void
203 g_rec_mutex_lock (GRecMutex *mutex)
204 {
205   EnterCriticalSection (g_rec_mutex_get_impl (mutex));
206 }
207
208 void
209 g_rec_mutex_unlock (GRecMutex *mutex)
210 {
211   LeaveCriticalSection (mutex->p);
212 }
213
214 gboolean
215 g_rec_mutex_trylock (GRecMutex *mutex)
216 {
217   return TryEnterCriticalSection (g_rec_mutex_get_impl (mutex));
218 }
219
220 /* {{{1 GRWLock */
221
222 void
223 g_rw_lock_init (GRWLock *lock)
224 {
225   g_thread_impl_vtable.InitializeSRWLock (lock);
226 }
227
228 void
229 g_rw_lock_clear (GRWLock *lock)
230 {
231   if (g_thread_impl_vtable.DeleteSRWLock != NULL)
232     g_thread_impl_vtable.DeleteSRWLock (lock);
233 }
234
235 void
236 g_rw_lock_writer_lock (GRWLock *lock)
237 {
238   g_thread_impl_vtable.AcquireSRWLockExclusive (lock);
239 }
240
241 gboolean
242 g_rw_lock_writer_trylock (GRWLock *lock)
243 {
244   return g_thread_impl_vtable.TryAcquireSRWLockExclusive (lock);
245 }
246
247 void
248 g_rw_lock_writer_unlock (GRWLock *lock)
249 {
250   g_thread_impl_vtable.ReleaseSRWLockExclusive (lock);
251 }
252
253 void
254 g_rw_lock_reader_lock (GRWLock *lock)
255 {
256   g_thread_impl_vtable.AcquireSRWLockShared (lock);
257 }
258
259 gboolean
260 g_rw_lock_reader_trylock (GRWLock *lock)
261 {
262   return g_thread_impl_vtable.TryAcquireSRWLockShared (lock);
263 }
264
265 void
266 g_rw_lock_reader_unlock (GRWLock *lock)
267 {
268   g_thread_impl_vtable.ReleaseSRWLockShared (lock);
269 }
270
271 /* {{{1 GCond */
272 void
273 g_cond_init (GCond *cond)
274 {
275   g_thread_impl_vtable.InitializeConditionVariable (cond);
276 }
277
278 void
279 g_cond_clear (GCond *cond)
280 {
281   if (g_thread_impl_vtable.DeleteConditionVariable)
282     g_thread_impl_vtable.DeleteConditionVariable (cond);
283 }
284
285 void
286 g_cond_signal (GCond *cond)
287 {
288   g_thread_impl_vtable.WakeConditionVariable (cond);
289 }
290
291 void
292 g_cond_broadcast (GCond *cond)
293 {
294   g_thread_impl_vtable.WakeAllConditionVariable (cond);
295 }
296
297 void
298 g_cond_wait (GCond  *cond,
299              GMutex *entered_mutex)
300 {
301   g_thread_impl_vtable.SleepConditionVariableSRW (cond, entered_mutex, INFINITE, 0);
302 }
303
304 gboolean
305 g_cond_wait_until (GCond  *cond,
306                    GMutex *entered_mutex,
307                    gint64  end_time)
308 {
309   gint64 span;
310   FILETIME ft;
311   gint64 now;
312
313   GetSystemTimeAsFileTime (&ft);
314   memmove (&now, &ft, sizeof (FILETIME));
315
316   now -= G_GINT64_CONSTANT (116444736000000000);
317   now /= 10;
318
319   span = end_time - now;
320
321   if G_UNLIKELY (span < 0)
322     span = 0;
323
324   if G_UNLIKELY (span > G_GINT64_CONSTANT (1000) * G_MAXINT32)
325     span = INFINITE;
326
327   return g_thread_impl_vtable.SleepConditionVariableSRW (cond, entered_mutex, span / 1000, 0);
328 }
329
330 /* {{{1 GPrivate */
331
332 typedef struct _GPrivateDestructor GPrivateDestructor;
333
334 struct _GPrivateDestructor
335 {
336   DWORD               index;
337   GDestroyNotify      notify;
338   GPrivateDestructor *next;
339 };
340
341 static GPrivateDestructor * volatile g_private_destructors;
342 static CRITICAL_SECTION g_private_lock;
343
344 static DWORD
345 g_private_get_impl (GPrivate *key)
346 {
347   DWORD impl = (DWORD) key->p;
348
349   if G_UNLIKELY (impl == 0)
350     {
351       EnterCriticalSection (&g_private_lock);
352       impl = (DWORD) key->p;
353       if (impl == 0)
354         {
355           GPrivateDestructor *destructor;
356
357           impl = TlsAlloc ();
358
359           if (impl == TLS_OUT_OF_INDEXES)
360             g_thread_abort (0, "TlsAlloc");
361
362           if (key->notify != NULL)
363             {
364               destructor = malloc (sizeof (GPrivateDestructor));
365               if G_UNLIKELY (destructor == NULL)
366                 g_thread_abort (errno, "malloc");
367               destructor->index = impl;
368               destructor->notify = key->notify;
369               destructor->next = g_private_destructors;
370
371               /* We need to do an atomic store due to the unlocked
372                * access to the destructor list from the thread exit
373                * function.
374                *
375                * It can double as a sanity check...
376                */
377               if (InterlockedCompareExchangePointer (&g_private_destructors, destructor,
378                                                      destructor->next) != destructor->next)
379                 g_thread_abort (0, "g_private_get_impl(1)");
380             }
381
382           /* Ditto, due to the unlocked access on the fast path */
383           if (InterlockedCompareExchangePointer (&key->p, impl, NULL) != NULL)
384             g_thread_abort (0, "g_private_get_impl(2)");
385         }
386       LeaveCriticalSection (&g_private_lock);
387     }
388
389   return impl;
390 }
391
392 gpointer
393 g_private_get (GPrivate *key)
394 {
395   return TlsGetValue (g_private_get_impl (key));
396 }
397
398 void
399 g_private_set (GPrivate *key,
400                gpointer  value)
401 {
402   TlsSetValue (g_private_get_impl (key), value);
403 }
404
405 void
406 g_private_replace (GPrivate *key,
407                    gpointer  value)
408 {
409   DWORD impl = g_private_get_impl (key);
410   gpointer old;
411
412   old = TlsGetValue (impl);
413   if (old && key->notify)
414     key->notify (old);
415   TlsSetValue (impl, value);
416 }
417
418 /* {{{1 GThread */
419
420 #define win32_check_for_error(what) G_STMT_START{                       \
421   if (!(what))                                                          \
422     g_error ("file %s: line %d (%s): error %s during %s",               \
423              __FILE__, __LINE__, G_STRFUNC,                             \
424              g_win32_error_message (GetLastError ()), #what);           \
425   }G_STMT_END
426
427 #define G_MUTEX_SIZE (sizeof (gpointer))
428
429 typedef BOOL (__stdcall *GTryEnterCriticalSectionFunc) (CRITICAL_SECTION *);
430
431 typedef struct
432 {
433   GRealThread thread;
434
435   GThreadFunc proxy;
436   HANDLE      handle;
437 } GThreadWin32;
438
439 void
440 g_system_thread_free (GRealThread *thread)
441 {
442   GThreadWin32 *wt = (GThreadWin32 *) thread;
443
444   win32_check_for_error (CloseHandle (wt->handle));
445   g_slice_free (GThreadWin32, wt);
446 }
447
448 void
449 g_system_thread_exit (void)
450 {
451   _endthreadex (0);
452 }
453
454 static guint __stdcall
455 g_thread_win32_proxy (gpointer data)
456 {
457   GThreadWin32 *self = data;
458
459   self->proxy (self);
460
461   g_system_thread_exit ();
462
463   g_assert_not_reached ();
464
465   return 0;
466 }
467
468 GRealThread *
469 g_system_thread_new (GThreadFunc   func,
470                      gulong        stack_size,
471                      GError      **error)
472 {
473   GThreadWin32 *thread;
474   guint ignore;
475
476   thread = g_slice_new0 (GThreadWin32);
477   thread->proxy = func;
478
479   thread->handle = (HANDLE) _beginthreadex (NULL, stack_size, g_thread_win32_proxy, thread, 0, &ignore);
480
481   if (thread->handle == NULL)
482     {
483       gchar *win_error = g_win32_error_message (GetLastError ());
484       g_set_error (error, G_THREAD_ERROR, G_THREAD_ERROR_AGAIN,
485                    "Error creating thread: %s", win_error);
486       g_free (win_error);
487       g_slice_free (GThreadWin32, thread);
488       return NULL;
489     }
490
491   return (GRealThread *) thread;
492 }
493
494 void
495 g_thread_yield (void)
496 {
497   Sleep(0);
498 }
499
500 void
501 g_system_thread_wait (GRealThread *thread)
502 {
503   GThreadWin32 *wt = (GThreadWin32 *) thread;
504
505   win32_check_for_error (WAIT_FAILED != WaitForSingleObject (wt->handle, INFINITE));
506 }
507
508 void
509 g_system_thread_set_name (const gchar *name)
510 {
511   /* FIXME: implement */
512 }
513
514 /* {{{1 SRWLock and CONDITION_VARIABLE emulation (for Windows XP) */
515
516 static CRITICAL_SECTION g_thread_xp_lock;
517 static DWORD            g_thread_xp_waiter_tls;
518
519 /* {{{2 GThreadWaiter utility class for CONDITION_VARIABLE emulation */
520 typedef struct _GThreadXpWaiter GThreadXpWaiter;
521 struct _GThreadXpWaiter
522 {
523   HANDLE                    event;
524   volatile GThreadXpWaiter *next;
525 };
526
527 static GThreadXpWaiter *
528 g_thread_xp_waiter_get (void)
529 {
530   GThreadXpWaiter *waiter;
531
532   waiter = TlsGetValue (g_thread_xp_waiter_tls);
533
534   if G_UNLIKELY (waiter == NULL)
535     {
536       waiter = malloc (sizeof (GThreadXpWaiter));
537       if (waiter == NULL)
538         g_thread_abort (GetLastError (), "malloc");
539       waiter->event = CreateEvent (0, FALSE, FALSE, NULL);
540       if (waiter->event == NULL)
541         g_thread_abort (GetLastError (), "CreateEvent");
542
543       TlsSetValue (g_thread_xp_waiter_tls, waiter);
544     }
545
546   return waiter;
547 }
548
549 static void __stdcall
550 g_thread_xp_CallThisOnThreadExit (void)
551 {
552   GThreadXpWaiter *waiter;
553
554   waiter = TlsGetValue (g_thread_xp_waiter_tls);
555
556   if (waiter != NULL)
557     {
558       TlsSetValue (g_thread_xp_waiter_tls, NULL);
559       CloseHandle (waiter->event);
560       free (waiter);
561     }
562 }
563
564 /* {{{2 SRWLock emulation */
565 typedef struct
566 {
567   CRITICAL_SECTION  writer_lock;
568   gboolean          ever_shared;    /* protected by writer_lock */
569   gboolean          writer_locked;  /* protected by writer_lock */
570
571   /* below is only ever touched if ever_shared becomes true */
572   CRITICAL_SECTION  atomicity;
573   GThreadXpWaiter  *queued_writer; /* protected by atomicity lock */
574   gint              num_readers;   /* protected by atomicity lock */
575 } GThreadSRWLock;
576
577 static void __stdcall
578 g_thread_xp_InitializeSRWLock (gpointer mutex)
579 {
580   *(GThreadSRWLock * volatile *) mutex = NULL;
581 }
582
583 static void __stdcall
584 g_thread_xp_DeleteSRWLock (gpointer mutex)
585 {
586   GThreadSRWLock *lock = *(GThreadSRWLock * volatile *) mutex;
587
588   if (lock)
589     {
590       if (lock->ever_shared)
591         DeleteCriticalSection (&lock->atomicity);
592
593       DeleteCriticalSection (&lock->writer_lock);
594       free (lock);
595     }
596 }
597
598 static GThreadSRWLock * __stdcall
599 g_thread_xp_get_srwlock (GThreadSRWLock * volatile *lock)
600 {
601   GThreadSRWLock *result;
602
603   /* It looks like we're missing some barriers here, but this code only
604    * ever runs on Windows XP, which in turn only ever runs on hardware
605    * with a relatively rigid memory model.  The 'volatile' will take
606    * care of the compiler.
607    */
608   result = *lock;
609
610   if G_UNLIKELY (result == NULL)
611     {
612       EnterCriticalSection (&g_thread_xp_lock);
613
614       /* Check again */
615       result = *lock;
616       if (result == NULL)
617         {
618           result = malloc (sizeof (GThreadSRWLock));
619
620           if (result == NULL)
621             g_thread_abort (errno, "malloc");
622
623           InitializeCriticalSection (&result->writer_lock);
624           result->writer_locked = FALSE;
625           result->ever_shared = FALSE;
626           *lock = result;
627         }
628
629       LeaveCriticalSection (&g_thread_xp_lock);
630     }
631
632   return result;
633 }
634
635 static void __stdcall
636 g_thread_xp_AcquireSRWLockExclusive (gpointer mutex)
637 {
638   GThreadSRWLock *lock = g_thread_xp_get_srwlock (mutex);
639
640   EnterCriticalSection (&lock->writer_lock);
641
642   /* CRITICAL_SECTION is reentrant, but SRWLock is not.
643    * Detect the deadlock that would occur on later Windows version.
644    */
645   g_assert (!lock->writer_locked);
646   lock->writer_locked = TRUE;
647
648   if (lock->ever_shared)
649     {
650       GThreadXpWaiter *waiter = NULL;
651
652       EnterCriticalSection (&lock->atomicity);
653       if (lock->num_readers > 0)
654         lock->queued_writer = waiter = g_thread_xp_waiter_get ();
655       LeaveCriticalSection (&lock->atomicity);
656
657       if (waiter != NULL)
658         WaitForSingleObject (waiter->event, INFINITE);
659
660       lock->queued_writer = NULL;
661     }
662 }
663
664 static BOOLEAN __stdcall
665 g_thread_xp_TryAcquireSRWLockExclusive (gpointer mutex)
666 {
667   GThreadSRWLock *lock = g_thread_xp_get_srwlock (mutex);
668
669   if (!TryEnterCriticalSection (&lock->writer_lock))
670     return FALSE;
671
672   /* CRITICAL_SECTION is reentrant, but SRWLock is not.
673    * Ensure that this properly returns FALSE (as SRWLock would).
674    */
675   if G_UNLIKELY (lock->writer_locked)
676     {
677       LeaveCriticalSection (&lock->writer_lock);
678       return FALSE;
679     }
680
681   lock->writer_locked = TRUE;
682
683   if (lock->ever_shared)
684     {
685       gboolean available;
686
687       EnterCriticalSection (&lock->atomicity);
688       available = lock->num_readers == 0;
689       LeaveCriticalSection (&lock->atomicity);
690
691       if (!available)
692         {
693           LeaveCriticalSection (&lock->writer_lock);
694           return FALSE;
695         }
696     }
697
698   return TRUE;
699 }
700
701 static void __stdcall
702 g_thread_xp_ReleaseSRWLockExclusive (gpointer mutex)
703 {
704   GThreadSRWLock *lock = *(GThreadSRWLock * volatile *) mutex;
705
706   lock->writer_locked = FALSE;
707
708   /* We need this until we fix some weird parts of GLib that try to
709    * unlock freshly-allocated mutexes.
710    */
711   if (lock != NULL)
712     LeaveCriticalSection (&lock->writer_lock);
713 }
714
715 static void
716 g_thread_xp_srwlock_become_reader (GThreadSRWLock *lock)
717 {
718   if G_UNLIKELY (!lock->ever_shared)
719     {
720       InitializeCriticalSection (&lock->atomicity);
721       lock->queued_writer = NULL;
722       lock->num_readers = 0;
723
724       lock->ever_shared = TRUE;
725     }
726
727   EnterCriticalSection (&lock->atomicity);
728   lock->num_readers++;
729   LeaveCriticalSection (&lock->atomicity);
730 }
731
732 static void __stdcall
733 g_thread_xp_AcquireSRWLockShared (gpointer mutex)
734 {
735   GThreadSRWLock *lock = g_thread_xp_get_srwlock (mutex);
736
737   EnterCriticalSection (&lock->writer_lock);
738
739   /* See g_thread_xp_AcquireSRWLockExclusive */
740   g_assert (!lock->writer_locked);
741
742   g_thread_xp_srwlock_become_reader (lock);
743
744   LeaveCriticalSection (&lock->writer_lock);
745 }
746
747 static BOOLEAN __stdcall
748 g_thread_xp_TryAcquireSRWLockShared (gpointer mutex)
749 {
750   GThreadSRWLock *lock = g_thread_xp_get_srwlock (mutex);
751
752   if (!TryEnterCriticalSection (&lock->writer_lock))
753     return FALSE;
754
755   /* See g_thread_xp_AcquireSRWLockExclusive */
756   if G_UNLIKELY (lock->writer_locked)
757     {
758       LeaveCriticalSection (&lock->writer_lock);
759       return FALSE;
760     }
761
762   g_thread_xp_srwlock_become_reader (lock);
763
764   LeaveCriticalSection (&lock->writer_lock);
765
766   return TRUE;
767 }
768
769 static void __stdcall
770 g_thread_xp_ReleaseSRWLockShared (gpointer mutex)
771 {
772   GThreadSRWLock *lock = g_thread_xp_get_srwlock (mutex);
773
774   EnterCriticalSection (&lock->atomicity);
775
776   lock->num_readers--;
777
778   if (lock->num_readers == 0 && lock->queued_writer)
779     SetEvent (lock->queued_writer->event);
780
781   LeaveCriticalSection (&lock->atomicity);
782 }
783
784 /* {{{2 CONDITION_VARIABLE emulation */
785 typedef struct
786 {
787   volatile GThreadXpWaiter  *first;
788   volatile GThreadXpWaiter **last_ptr;
789 } GThreadXpCONDITION_VARIABLE;
790
791 static void __stdcall
792 g_thread_xp_InitializeConditionVariable (gpointer cond)
793 {
794   *(GThreadXpCONDITION_VARIABLE * volatile *) cond = NULL;
795 }
796
797 static void __stdcall
798 g_thread_xp_DeleteConditionVariable (gpointer cond)
799 {
800   GThreadXpCONDITION_VARIABLE *cv = *(GThreadXpCONDITION_VARIABLE * volatile *) cond;
801
802   if (cv)
803     free (cv);
804 }
805
806 static GThreadXpCONDITION_VARIABLE * __stdcall
807 g_thread_xp_get_condition_variable (GThreadXpCONDITION_VARIABLE * volatile *cond)
808 {
809   GThreadXpCONDITION_VARIABLE *result;
810
811   /* It looks like we're missing some barriers here, but this code only
812    * ever runs on Windows XP, which in turn only ever runs on hardware
813    * with a relatively rigid memory model.  The 'volatile' will take
814    * care of the compiler.
815    */
816   result = *cond;
817
818   if G_UNLIKELY (result == NULL)
819     {
820       result = malloc (sizeof (GThreadXpCONDITION_VARIABLE));
821
822       if (result == NULL)
823         g_thread_abort (errno, "malloc");
824
825       result->first = NULL;
826       result->last_ptr = &result->first;
827
828       if (InterlockedCompareExchangePointer (cond, result, NULL) != NULL)
829         {
830           free (result);
831           result = *cond;
832         }
833     }
834
835   return result;
836 }
837
838 static BOOL __stdcall
839 g_thread_xp_SleepConditionVariableSRW (gpointer cond,
840                                        gpointer mutex,
841                                        DWORD    timeout,
842                                        ULONG    flags)
843 {
844   GThreadXpCONDITION_VARIABLE *cv = g_thread_xp_get_condition_variable (cond);
845   GThreadXpWaiter *waiter = g_thread_xp_waiter_get ();
846   DWORD status;
847
848   waiter->next = NULL;
849
850   EnterCriticalSection (&g_thread_xp_lock);
851   *cv->last_ptr = waiter;
852   cv->last_ptr = &waiter->next;
853   LeaveCriticalSection (&g_thread_xp_lock);
854
855   g_mutex_unlock (mutex);
856   status = WaitForSingleObject (waiter->event, timeout);
857
858   if (status != WAIT_TIMEOUT && status != WAIT_OBJECT_0)
859     g_thread_abort (GetLastError (), "WaitForSingleObject");
860
861   g_mutex_lock (mutex);
862
863   return status == WAIT_OBJECT_0;
864 }
865
866 static void __stdcall
867 g_thread_xp_WakeConditionVariable (gpointer cond)
868 {
869   GThreadXpCONDITION_VARIABLE *cv = g_thread_xp_get_condition_variable (cond);
870   volatile GThreadXpWaiter *waiter;
871
872   EnterCriticalSection (&g_thread_xp_lock);
873   waiter = cv->first;
874   if (waiter != NULL)
875     {
876       cv->first = waiter->next;
877       if (cv->first == NULL)
878         cv->last_ptr = &cv->first;
879     }
880   LeaveCriticalSection (&g_thread_xp_lock);
881
882   if (waiter != NULL)
883     SetEvent (waiter->event);
884 }
885
886 static void __stdcall
887 g_thread_xp_WakeAllConditionVariable (gpointer cond)
888 {
889   GThreadXpCONDITION_VARIABLE *cv = g_thread_xp_get_condition_variable (cond);
890   volatile GThreadXpWaiter *waiter;
891
892   EnterCriticalSection (&g_thread_xp_lock);
893   waiter = cv->first;
894   cv->first = NULL;
895   cv->last_ptr = &cv->first;
896   LeaveCriticalSection (&g_thread_xp_lock);
897
898   while (waiter != NULL)
899     {
900       volatile GThreadXpWaiter *next;
901
902       next = waiter->next;
903       SetEvent (waiter->event);
904       waiter = next;
905     }
906 }
907
908 /* {{{2 XP Setup */
909 static void
910 g_thread_xp_init (void)
911 {
912   static const GThreadImplVtable g_thread_xp_impl_vtable = {
913     g_thread_xp_CallThisOnThreadExit,
914     g_thread_xp_InitializeSRWLock,
915     g_thread_xp_DeleteSRWLock,
916     g_thread_xp_AcquireSRWLockExclusive,
917     g_thread_xp_TryAcquireSRWLockExclusive,
918     g_thread_xp_ReleaseSRWLockExclusive,
919     g_thread_xp_AcquireSRWLockShared,
920     g_thread_xp_TryAcquireSRWLockShared,
921     g_thread_xp_ReleaseSRWLockShared,
922     g_thread_xp_InitializeConditionVariable,
923     g_thread_xp_DeleteConditionVariable,
924     g_thread_xp_SleepConditionVariableSRW,
925     g_thread_xp_WakeAllConditionVariable,
926     g_thread_xp_WakeConditionVariable
927   };
928
929   InitializeCriticalSection (&g_thread_xp_lock);
930   g_thread_xp_waiter_tls = TlsAlloc ();
931
932   g_thread_impl_vtable = g_thread_xp_impl_vtable;
933 }
934
935 /* {{{1 Epilogue */
936
937 static gboolean
938 g_thread_lookup_native_funcs (void)
939 {
940   GThreadImplVtable native_vtable = { 0, };
941   HMODULE kernel32;
942
943   kernel32 = GetModuleHandle ("KERNEL32.DLL");
944
945   if (kernel32 == NULL)
946     return FALSE;
947
948 #define GET_FUNC(name) if ((native_vtable.name = (void *) GetProcAddress (kernel32, #name)) == NULL) return FALSE
949   GET_FUNC(InitializeSRWLock);
950   GET_FUNC(AcquireSRWLockExclusive);
951   GET_FUNC(TryAcquireSRWLockExclusive);
952   GET_FUNC(ReleaseSRWLockExclusive);
953   GET_FUNC(AcquireSRWLockShared);
954   GET_FUNC(TryAcquireSRWLockShared);
955   GET_FUNC(ReleaseSRWLockShared);
956
957   GET_FUNC(InitializeConditionVariable);
958   GET_FUNC(SleepConditionVariableSRW);
959   GET_FUNC(WakeAllConditionVariable);
960   GET_FUNC(WakeConditionVariable);
961 #undef GET_FUNC
962
963   g_thread_impl_vtable = native_vtable;
964
965   return TRUE;
966 }
967
968 G_GNUC_INTERNAL void
969 g_thread_win32_init (void)
970 {
971   if (!g_thread_lookup_native_funcs ())
972     g_thread_xp_init ();
973
974   InitializeCriticalSection (&g_private_lock);
975 }
976
977 G_GNUC_INTERNAL void
978 g_thread_win32_thread_detach (void)
979 {
980   gboolean dtors_called;
981
982   do
983     {
984       GPrivateDestructor *dtor;
985
986       /* We go by the POSIX book on this one.
987        *
988        * If we call a destructor then there is a chance that some new
989        * TLS variables got set by code called in that destructor.
990        *
991        * Loop until nothing is left.
992        */
993       dtors_called = FALSE;
994
995       for (dtor = g_private_destructors; dtor; dtor = dtor->next)
996         {
997           gpointer value;
998
999           value = TlsGetValue (dtor->index);
1000           if (value != NULL && dtor->notify != NULL)
1001             {
1002               /* POSIX says to clear this before the call */
1003               TlsSetValue (dtor->index, NULL);
1004               dtor->notify (value);
1005               dtors_called = TRUE;
1006             }
1007         }
1008     }
1009   while (dtors_called);
1010
1011   if (g_thread_impl_vtable.CallThisOnThreadExit)
1012     g_thread_impl_vtable.CallThisOnThreadExit ();
1013 }
1014
1015 /* vim:set foldmethod=marker: */