mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-12 10:45:13 +01:00
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:
parent
9c35df3de3
commit
7f7a422ce5
@ -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>
|
2001-10-28 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* glib/glib.def: Add missing g_pattern_match_simple and
|
* glib/glib.def: Add missing g_pattern_match_simple and
|
||||||
|
@ -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>
|
2001-10-28 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* glib/glib.def: Add missing g_pattern_match_simple and
|
* glib/glib.def: Add missing g_pattern_match_simple and
|
||||||
|
@ -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>
|
2001-10-28 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* glib/glib.def: Add missing g_pattern_match_simple and
|
* glib/glib.def: Add missing g_pattern_match_simple and
|
||||||
|
@ -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>
|
2001-10-28 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* glib/glib.def: Add missing g_pattern_match_simple and
|
* glib/glib.def: Add missing g_pattern_match_simple and
|
||||||
|
@ -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>
|
2001-10-28 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* glib/glib.def: Add missing g_pattern_match_simple and
|
* glib/glib.def: Add missing g_pattern_match_simple and
|
||||||
|
@ -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>
|
2001-10-28 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* glib/glib.def: Add missing g_pattern_match_simple and
|
* glib/glib.def: Add missing g_pattern_match_simple and
|
||||||
|
@ -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>
|
2001-10-28 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* glib/glib.def: Add missing g_pattern_match_simple and
|
* glib/glib.def: Add missing g_pattern_match_simple and
|
||||||
|
@ -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>
|
2001-10-28 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* glib/glib.def: Add missing g_pattern_match_simple and
|
* glib/glib.def: Add missing g_pattern_match_simple and
|
||||||
|
@ -2475,8 +2475,11 @@ g_main_loop_quit (GMainLoop *loop)
|
|||||||
loop->is_running = FALSE;
|
loop->is_running = FALSE;
|
||||||
g_main_context_wakeup_unlocked (loop->context);
|
g_main_context_wakeup_unlocked (loop->context);
|
||||||
|
|
||||||
|
#ifdef G_THREADS_ENABLED
|
||||||
if (loop->context->cond)
|
if (loop->context->cond)
|
||||||
g_cond_broadcast (loop->context->cond);
|
g_cond_broadcast (loop->context->cond);
|
||||||
|
#endif /* G_THREADS_ENABLED */
|
||||||
|
|
||||||
UNLOCK_CONTEXT (loop->context);
|
UNLOCK_CONTEXT (loop->context);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user