aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-05-01 13:48:39 +0200
committerMattias Andrée <maandree@operamail.com>2015-05-01 13:48:39 +0200
commit24f9da71efd637feed833a4fca5650013f901812 (patch)
tree0b83b3c4a507215422592e9f6f9c77f9f4bea2a4
parentimplement bus_chown and bus_chmod (diff)
downloadbus-24f9da71efd637feed833a4fca5650013f901812.tar.gz
bus-24f9da71efd637feed833a4fca5650013f901812.tar.bz2
bus-24f9da71efd637feed833a4fca5650013f901812.tar.xz
add todos for timed operations
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--src/bus.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bus.h b/src/bus.h
index 3ab83de..4f38067 100644
--- a/src/bus.h
+++ b/src/bus.h
@@ -163,6 +163,7 @@ int bus_close(bus_t *bus);
* @return 0 on success, -1 on error
*/
int bus_write(const bus_t *bus, const char *message, int flags);
+/* TODO bus_write_timed */
/**
* Listen (in a loop, forever) for new message on a bus
@@ -187,6 +188,7 @@ int bus_write(const bus_t *bus, const char *message, int flags);
* @return 0 on success, -1 on error
*/
int bus_read(const bus_t *bus, int (*callback)(const char *message, void *user_data), void *user_data);
+/* TODO bus_read_timed */
/**
@@ -226,6 +228,7 @@ int bus_poll_stop(const bus_t *bus);
* @return The received message, `NULL` on error
*/
const char *bus_poll(bus_t *bus, int flags);
+/* TODO bus_poll_timed */
/**