summaryrefslogtreecommitdiffstats
path: root/dbus/dbus-spawn.c
diff options
context:
space:
mode:
Diffstat (limited to 'dbus/dbus-spawn.c')
-rw-r--r--dbus/dbus-spawn.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/dbus/dbus-spawn.c b/dbus/dbus-spawn.c
index 5fa2d5e8..2273a4e3 100644
--- a/dbus/dbus-spawn.c
+++ b/dbus/dbus-spawn.c
@@ -42,11 +42,14 @@
* if you thought about it a bit.
*/
+/**
+ * Enumeration for status of a read()
+ */
typedef enum
{
- READ_STATUS_OK,
- READ_STATUS_ERROR,
- READ_STATUS_EOF
+ READ_STATUS_OK, /**< Read succeeded */
+ READ_STATUS_ERROR, /**< Some kind of error */
+ READ_STATUS_EOF /**< EOF returned */
} ReadStatus;
static ReadStatus
@@ -709,7 +712,9 @@ _dbus_babysitter_handle_watch (DBusBabysitter *sitter,
return TRUE;
}
+/** Helps remember which end of the pipe is which */
#define READ_END 0
+/** Helps remember which end of the pipe is which */
#define WRITE_END 1