summaryrefslogtreecommitdiffstats
path: root/dbus/dbus-watch.c
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2003-02-01 22:02:27 +0000
committerAlexander Larsson <alexl@redhat.com>2003-02-01 22:02:27 +0000
commitf023895590208ea70ff7ac7444cc5e0729a3a815 (patch)
treebf2355d54ac5f08d40cd60963e33c5928b2897fa /dbus/dbus-watch.c
parentdbc4c0ca13fcc1cdf2be6c35a4559bc456243acb (diff)
2003-02-02 Alexander Larsson <alexl@redhat.com>
* dbus/dbus-watch.c (dbus_watch_get_flags): Add note in the docs that ERROR or HANGUP won't be returned and are assumed always on. * glib/dbus-gmain.c (add_watch): Always add IO_ERR | IO_HUP * dbus/dbus-message.h: Add semicolon after dbus_message_iter_get_string_array(). Makes qt code build again
Diffstat (limited to 'dbus/dbus-watch.c')
-rw-r--r--dbus/dbus-watch.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/dbus/dbus-watch.c b/dbus/dbus-watch.c
index 78001612..681da939 100644
--- a/dbus/dbus-watch.c
+++ b/dbus/dbus-watch.c
@@ -330,6 +330,11 @@ dbus_watch_get_fd (DBusWatch *watch)
* Gets flags from DBusWatchFlags indicating
* what conditions should be monitored on the
* file descriptor.
+ *
+ * The flags returned will only contain DBUS_WATCH_READABLE
+ * and DBUS_WATCH_WRITABLE, never DBUS_WATCH_HANGUP or
+ * DBUS_WATCH_ERROR; all watches implicitly include a watch
+ * for hangups, errors, and other exceptional conditions.
*
* @param watch the DBusWatch object.
* @returns the conditions to watch.