mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-01 23:26:16 +01:00
Set the return value from the result of g_main_context_check() (after we
Sat Nov 1 08:45:38 2003 Owen Taylor <otaylor@redhat.com> * glib/gmain.c (g_main_context_iterate): Set the return value from the result of g_main_context_check() (after we poll) rather than g_main_context_prepare. (#121675, Padraig O'Briain)
This commit is contained in:
parent
dd7f2848da
commit
3f1a49ea41
@ -1,3 +1,10 @@
|
||||
Sat Nov 1 08:45:38 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* glib/gmain.c (g_main_context_iterate): Set the
|
||||
return value from the result of g_main_context_check()
|
||||
(after we poll) rather than g_main_context_prepare.
|
||||
(#121675, Padraig O'Briain)
|
||||
|
||||
Fri Oct 31 00:13:53 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* configure.in: Remove the semicolon from the definition of
|
||||
|
@ -1,3 +1,10 @@
|
||||
Sat Nov 1 08:45:38 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* glib/gmain.c (g_main_context_iterate): Set the
|
||||
return value from the result of g_main_context_check()
|
||||
(after we poll) rather than g_main_context_prepare.
|
||||
(#121675, Padraig O'Briain)
|
||||
|
||||
Fri Oct 31 00:13:53 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* configure.in: Remove the semicolon from the definition of
|
||||
|
@ -1,3 +1,10 @@
|
||||
Sat Nov 1 08:45:38 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* glib/gmain.c (g_main_context_iterate): Set the
|
||||
return value from the result of g_main_context_check()
|
||||
(after we poll) rather than g_main_context_prepare.
|
||||
(#121675, Padraig O'Briain)
|
||||
|
||||
Fri Oct 31 00:13:53 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* configure.in: Remove the semicolon from the definition of
|
||||
|
@ -1,3 +1,10 @@
|
||||
Sat Nov 1 08:45:38 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* glib/gmain.c (g_main_context_iterate): Set the
|
||||
return value from the result of g_main_context_check()
|
||||
(after we poll) rather than g_main_context_prepare.
|
||||
(#121675, Padraig O'Briain)
|
||||
|
||||
Fri Oct 31 00:13:53 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* configure.in: Remove the semicolon from the definition of
|
||||
|
@ -1,3 +1,10 @@
|
||||
Sat Nov 1 08:45:38 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* glib/gmain.c (g_main_context_iterate): Set the
|
||||
return value from the result of g_main_context_check()
|
||||
(after we poll) rather than g_main_context_prepare.
|
||||
(#121675, Padraig O'Briain)
|
||||
|
||||
Fri Oct 31 00:13:53 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* configure.in: Remove the semicolon from the definition of
|
||||
|
@ -1,3 +1,10 @@
|
||||
Sat Nov 1 08:45:38 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* glib/gmain.c (g_main_context_iterate): Set the
|
||||
return value from the result of g_main_context_check()
|
||||
(after we poll) rather than g_main_context_prepare.
|
||||
(#121675, Padraig O'Briain)
|
||||
|
||||
Fri Oct 31 00:13:53 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* configure.in: Remove the semicolon from the definition of
|
||||
|
@ -2358,7 +2358,7 @@ g_main_context_iterate (GMainContext *context,
|
||||
|
||||
UNLOCK_CONTEXT (context);
|
||||
|
||||
some_ready = g_main_context_prepare (context, &max_priority);
|
||||
g_main_context_prepare (context, &max_priority);
|
||||
|
||||
while ((nfds = g_main_context_query (context, max_priority, &timeout, fds,
|
||||
allocated_nfds)) > allocated_nfds)
|
||||
@ -2375,7 +2375,7 @@ g_main_context_iterate (GMainContext *context,
|
||||
|
||||
g_main_context_poll (context, timeout, max_priority, fds, nfds);
|
||||
|
||||
g_main_context_check (context, max_priority, fds, nfds);
|
||||
some_ready = g_main_context_check (context, max_priority, fds, nfds);
|
||||
|
||||
if (dispatch)
|
||||
g_main_context_dispatch (context);
|
||||
|
Loading…
Reference in New Issue
Block a user