From: Owen Taylor Date: Fri, 20 Dec 2002 14:42:56 +0000 (+0000) Subject: Call g_main_thread_init() after setting g_threads_got_initialized. X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=5ab7a70230b650fdfe8a1024468366f6a39f4ef1;p=dana%2Fcg-glib.git Call g_main_thread_init() after setting g_threads_got_initialized. Fri Dec 20 09:37:27 2002 Owen Taylor * gthread/gthread-impl.c (g_thread_init): Call g_main_thread_init() after setting g_threads_got_initialized. (#101624, Alceste Scalas, Sebastian Wilhelmi) --- diff --git a/ChangeLog b/ChangeLog index b2e2aef4..1dc1854d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Fri Dec 20 09:37:27 2002 Owen Taylor + + * gthread/gthread-impl.c (g_thread_init): Call g_main_thread_init() + after setting g_threads_got_initialized. (#101624, + Alceste Scalas, Sebastian Wilhelmi) + Wed Dec 18 16:19:08 2002 Manish Singh * glib/gtypes.h: new endian asm for ia64 and x86_64, general diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index b2e2aef4..1dc1854d 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +Fri Dec 20 09:37:27 2002 Owen Taylor + + * gthread/gthread-impl.c (g_thread_init): Call g_main_thread_init() + after setting g_threads_got_initialized. (#101624, + Alceste Scalas, Sebastian Wilhelmi) + Wed Dec 18 16:19:08 2002 Manish Singh * glib/gtypes.h: new endian asm for ia64 and x86_64, general diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index b2e2aef4..1dc1854d 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,9 @@ +Fri Dec 20 09:37:27 2002 Owen Taylor + + * gthread/gthread-impl.c (g_thread_init): Call g_main_thread_init() + after setting g_threads_got_initialized. (#101624, + Alceste Scalas, Sebastian Wilhelmi) + Wed Dec 18 16:19:08 2002 Manish Singh * glib/gtypes.h: new endian asm for ia64 and x86_64, general diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index b2e2aef4..1dc1854d 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,9 @@ +Fri Dec 20 09:37:27 2002 Owen Taylor + + * gthread/gthread-impl.c (g_thread_init): Call g_main_thread_init() + after setting g_threads_got_initialized. (#101624, + Alceste Scalas, Sebastian Wilhelmi) + Wed Dec 18 16:19:08 2002 Manish Singh * glib/gtypes.h: new endian asm for ia64 and x86_64, general diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index b2e2aef4..1dc1854d 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +Fri Dec 20 09:37:27 2002 Owen Taylor + + * gthread/gthread-impl.c (g_thread_init): Call g_main_thread_init() + after setting g_threads_got_initialized. (#101624, + Alceste Scalas, Sebastian Wilhelmi) + Wed Dec 18 16:19:08 2002 Manish Singh * glib/gtypes.h: new endian asm for ia64 and x86_64, general diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index b2e2aef4..1dc1854d 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +Fri Dec 20 09:37:27 2002 Owen Taylor + + * gthread/gthread-impl.c (g_thread_init): Call g_main_thread_init() + after setting g_threads_got_initialized. (#101624, + Alceste Scalas, Sebastian Wilhelmi) + Wed Dec 18 16:19:08 2002 Manish Singh * glib/gtypes.h: new endian asm for ia64 and x86_64, general diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index b2e2aef4..1dc1854d 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +Fri Dec 20 09:37:27 2002 Owen Taylor + + * gthread/gthread-impl.c (g_thread_init): Call g_main_thread_init() + after setting g_threads_got_initialized. (#101624, + Alceste Scalas, Sebastian Wilhelmi) + Wed Dec 18 16:19:08 2002 Manish Singh * glib/gtypes.h: new endian asm for ia64 and x86_64, general diff --git a/gthread/gthread-impl.c b/gthread/gthread-impl.c index bed7050c..3825e40d 100644 --- a/gthread/gthread-impl.c +++ b/gthread/gthread-impl.c @@ -384,12 +384,16 @@ g_thread_init (GThreadFunctions* init) g_messages_init (); g_convert_init (); g_rand_init (); - g_main_thread_init (); /* now we can set g_threads_got_initialized and thus enable * all the thread functions */ g_threads_got_initialized = TRUE; + + /* This has to come after g_threads_got_initialized is set + * since it uses a private variable created by g_mem_init() + */ + g_main_thread_init (); } #else /* !G_THREADS_ENABLED */