From 4bc720a4a4971035d97f0ab191e21952dceb9c69 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 8 Oct 2004 14:20:56 +0000 Subject: [PATCH] Document that GLib supports only a single callback per pid. (#154828, 2004-10-08 Matthias Clasen * glib/gmain.c (g_child_watch_add_full): * glib/gmain.c (g_child_watch_add): Document that GLib supports only a single callback per pid. (#154828, Gustavo Carneiro) --- ChangeLog | 6 ++++++ ChangeLog.pre-2-10 | 6 ++++++ ChangeLog.pre-2-12 | 6 ++++++ ChangeLog.pre-2-6 | 6 ++++++ ChangeLog.pre-2-8 | 6 ++++++ glib/gmain.c | 4 ++++ 6 files changed, 34 insertions(+) diff --git a/ChangeLog b/ChangeLog index 988518be..0187bb29 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-10-08 Matthias Clasen + + * glib/gmain.c (g_child_watch_add_full): + * glib/gmain.c (g_child_watch_add): Document that GLib supports only + a single callback per pid. (#154828, Gustavo Carneiro) + 2004-10-06 Matthias Clasen * glib/gfileutils.c: Fix some C99isms. (#154676, Kjartan Maraas) diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 988518be..0187bb29 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +2004-10-08 Matthias Clasen + + * glib/gmain.c (g_child_watch_add_full): + * glib/gmain.c (g_child_watch_add): Document that GLib supports only + a single callback per pid. (#154828, Gustavo Carneiro) + 2004-10-06 Matthias Clasen * glib/gfileutils.c: Fix some C99isms. (#154676, Kjartan Maraas) diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 988518be..0187bb29 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,9 @@ +2004-10-08 Matthias Clasen + + * glib/gmain.c (g_child_watch_add_full): + * glib/gmain.c (g_child_watch_add): Document that GLib supports only + a single callback per pid. (#154828, Gustavo Carneiro) + 2004-10-06 Matthias Clasen * glib/gfileutils.c: Fix some C99isms. (#154676, Kjartan Maraas) diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 988518be..0187bb29 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +2004-10-08 Matthias Clasen + + * glib/gmain.c (g_child_watch_add_full): + * glib/gmain.c (g_child_watch_add): Document that GLib supports only + a single callback per pid. (#154828, Gustavo Carneiro) + 2004-10-06 Matthias Clasen * glib/gfileutils.c: Fix some C99isms. (#154676, Kjartan Maraas) diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 988518be..0187bb29 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +2004-10-08 Matthias Clasen + + * glib/gmain.c (g_child_watch_add_full): + * glib/gmain.c (g_child_watch_add): Document that GLib supports only + a single callback per pid. (#154828, Gustavo Carneiro) + 2004-10-06 Matthias Clasen * glib/gfileutils.c: Fix some C99isms. (#154676, Kjartan Maraas) diff --git a/glib/gmain.c b/glib/gmain.c index 55fb9a73..cba3ccd0 100644 --- a/glib/gmain.c +++ b/glib/gmain.c @@ -3716,6 +3716,8 @@ g_child_watch_source_new (GPid pid) * source is still active. Typically, you will want to call * g_spawn_close_pid() in the callback function for the source. * + * GLib supports only a single callback per process id. + * * Return value: the id of event source. * * Since: 2.4 @@ -3758,6 +3760,8 @@ g_child_watch_add_full (gint priority, * source is still active. Typically, you will want to call * g_spawn_close_pid() in the callback function for the source. * + * GLib supports only a single callback per process id. + * * Return value: the id of event source. * * Since: 2.4 -- 2.34.1