Conditionalize thread related calls. (#63091)

2001-10-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* glib/gmain.c (g_main_loop_quit): Conditionalize thread related
	calls. (#63091)
This commit is contained in:
Sebastian Wilhelmi 2001-10-29 11:09:53 +00:00 committed by Sebastian Wilhelmi
parent 9c35df3de3
commit 7f7a422ce5
9 changed files with 43 additions and 0 deletions

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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);
}