diff options
author | Matthias Clasen <mclasen@redhat.com> | 2004-10-08 14:19:41 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-10-08 14:19:41 +0000 |
commit | c7b1002ca7b8e8a86dd0a39f5db639147c0bca03 (patch) | |
tree | 76f67818f963e72b55c3d2cb1cf48a23ff8b948c | |
parent | 79222175c167b70fb9aa0317d4bd119257116436 (diff) |
Document that GLib supports only a single callback per pid. (#154828,
2004-10-08 Matthias Clasen <mclasen@redhat.com>
* 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)
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-12 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-6 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 6 | ||||
-rw-r--r-- | glib/gmain.c | 4 |
6 files changed, 34 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2004-10-08 Matthias Clasen <mclasen@redhat.com> + + * 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 <mclasen@redhat.com> * glib/gfileutils.c: Fix some C99isms. (#154676, Kjartan Maraas) diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 2b6cd9d49..60f718ad7 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +2004-10-08 Matthias Clasen <mclasen@redhat.com> + + * 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 <mclasen@redhat.com> * glib/gfileutils.c: Fix some C99isms. (#154676, Kjartan Maraas) diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 2b6cd9d49..60f718ad7 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,9 @@ +2004-10-08 Matthias Clasen <mclasen@redhat.com> + + * 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 <mclasen@redhat.com> * glib/gfileutils.c: Fix some C99isms. (#154676, Kjartan Maraas) diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 2b6cd9d49..60f718ad7 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +2004-10-08 Matthias Clasen <mclasen@redhat.com> + + * 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 <mclasen@redhat.com> * glib/gfileutils.c: Fix some C99isms. (#154676, Kjartan Maraas) diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 2b6cd9d49..60f718ad7 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +2004-10-08 Matthias Clasen <mclasen@redhat.com> + + * 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 <mclasen@redhat.com> * glib/gfileutils.c: Fix some C99isms. (#154676, Kjartan Maraas) diff --git a/glib/gmain.c b/glib/gmain.c index e33067f62..25027f700 100644 --- a/glib/gmain.c +++ b/glib/gmain.c @@ -3715,6 +3715,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 @@ -3757,6 +3759,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 |