mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-26 05:56:14 +01:00
Run _g_atomic_thread_init as the first of the full fledged initializers to
2006-05-22 Sebastian Wilhelmi <wilhelmi@google.com> * glib/gthread.c (g_thread_init_glib): Run _g_atomic_thread_init as the first of the full fledged initializers to allow the later to potentially use atomic ints (which they currently do not). (#342563, Peter Kjellerstedt)
This commit is contained in:
parent
9634d131ba
commit
9645c707c0
@ -1,3 +1,10 @@
|
||||
2006-05-22 Sebastian Wilhelmi <wilhelmi@google.com>
|
||||
|
||||
* glib/gthread.c (g_thread_init_glib): Run _g_atomic_thread_init
|
||||
as the first of the full fledged initializers to allow the later
|
||||
to potentially use atomic ints (which they currently do
|
||||
not). (#342563, Peter Kjellerstedt)
|
||||
|
||||
2006-05-16 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/Makefile.am:
|
||||
|
@ -1,3 +1,10 @@
|
||||
2006-05-22 Sebastian Wilhelmi <wilhelmi@google.com>
|
||||
|
||||
* glib/gthread.c (g_thread_init_glib): Run _g_atomic_thread_init
|
||||
as the first of the full fledged initializers to allow the later
|
||||
to potentially use atomic ints (which they currently do
|
||||
not). (#342563, Peter Kjellerstedt)
|
||||
|
||||
2006-05-16 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/Makefile.am:
|
||||
|
@ -144,10 +144,10 @@ g_thread_init_glib (void)
|
||||
_g_messages_thread_init_nomessage ();
|
||||
|
||||
/* we may run full-fledged initializers from here */
|
||||
_g_atomic_thread_init ();
|
||||
_g_convert_thread_init ();
|
||||
_g_rand_thread_init ();
|
||||
_g_main_thread_init ();
|
||||
_g_atomic_thread_init ();
|
||||
_g_utils_thread_init ();
|
||||
#ifdef G_OS_WIN32
|
||||
_g_win32_thread_init ();
|
||||
|
Loading…
Reference in New Issue
Block a user