Conditionalize thread related calls. (#63091)
authorSebastian Wilhelmi <wilhelmi@ira.uka.de>
Mon, 29 Oct 2001 11:09:53 +0000 (11:09 +0000)
committerSebastian Wilhelmi <wilhelmi@src.gnome.org>
Mon, 29 Oct 2001 11:09:53 +0000 (11:09 +0000)
2001-10-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* glib/gmain.c (g_main_loop_quit): Conditionalize thread related
calls. (#63091)

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gmain.c

index 698d7c2..db9c4b5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * glib/gmain.c (g_main_loop_quit): Conditionalize thread related
+       calls. (#63091)
+
 2001-10-28  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add missing g_pattern_match_simple and
index 698d7c2..db9c4b5 100644 (file)
@@ -1,3 +1,8 @@
+2001-10-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * glib/gmain.c (g_main_loop_quit): Conditionalize thread related
+       calls. (#63091)
+
 2001-10-28  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add missing g_pattern_match_simple and
index 698d7c2..db9c4b5 100644 (file)
@@ -1,3 +1,8 @@
+2001-10-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * glib/gmain.c (g_main_loop_quit): Conditionalize thread related
+       calls. (#63091)
+
 2001-10-28  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add missing g_pattern_match_simple and
index 698d7c2..db9c4b5 100644 (file)
@@ -1,3 +1,8 @@
+2001-10-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * glib/gmain.c (g_main_loop_quit): Conditionalize thread related
+       calls. (#63091)
+
 2001-10-28  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add missing g_pattern_match_simple and
index 698d7c2..db9c4b5 100644 (file)
@@ -1,3 +1,8 @@
+2001-10-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * glib/gmain.c (g_main_loop_quit): Conditionalize thread related
+       calls. (#63091)
+
 2001-10-28  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add missing g_pattern_match_simple and
index 698d7c2..db9c4b5 100644 (file)
@@ -1,3 +1,8 @@
+2001-10-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * glib/gmain.c (g_main_loop_quit): Conditionalize thread related
+       calls. (#63091)
+
 2001-10-28  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add missing g_pattern_match_simple and
index 698d7c2..db9c4b5 100644 (file)
@@ -1,3 +1,8 @@
+2001-10-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * glib/gmain.c (g_main_loop_quit): Conditionalize thread related
+       calls. (#63091)
+
 2001-10-28  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add missing g_pattern_match_simple and
index 698d7c2..db9c4b5 100644 (file)
@@ -1,3 +1,8 @@
+2001-10-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * glib/gmain.c (g_main_loop_quit): Conditionalize thread related
+       calls. (#63091)
+
 2001-10-28  Tor Lillqvist  <tml@iki.fi>
 
        * glib/glib.def: Add missing g_pattern_match_simple and
index a965a40..bc27ca5 100644 (file)
@@ -2475,8 +2475,11 @@ g_main_loop_quit (GMainLoop *loop)
   loop->is_running = FALSE;
   g_main_context_wakeup_unlocked (loop->context);
 
+#ifdef G_THREADS_ENABLED
   if (loop->context->cond)
     g_cond_broadcast (loop->context->cond);
+#endif /* G_THREADS_ENABLED */
+
   UNLOCK_CONTEXT (loop->context);
 }