aboutsummaryrefslogtreecommitdiffstats
path: root/src/bus.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-05-17 14:28:20 +0200
committerMattias Andrée <maandree@operamail.com>2015-05-17 14:28:20 +0200
commit0f31d194025df5d63fcee65e32baa90cc5aa0ad6 (patch)
tree83ff9e158ba9df44dc8bb1a3c4ff6304ceb86a29 /src/bus.h
parentimplemented timed write, read and poll (diff)
downloadbus-0f31d194025df5d63fcee65e32baa90cc5aa0ad6.tar.gz
bus-0f31d194025df5d63fcee65e32baa90cc5aa0ad6.tar.bz2
bus-0f31d194025df5d63fcee65e32baa90cc5aa0ad6.tar.xz
add timed example and fix timed polling
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/bus.h')
-rw-r--r--src/bus.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/bus.h b/src/bus.h
index aa35c7b..9d3b436 100644
--- a/src/bus.h
+++ b/src/bus.h
@@ -107,11 +107,6 @@ typedef struct bus
*/
int first_poll;
- /**
- * Flags used for polling
- */
- int flags;
-
} bus_t;
@@ -258,7 +253,7 @@ int bus_read_timed(const bus_t *bus, int (*callback)(const char *message, void *
* the bus when `bus_poll` is called
* @return 0 on success, -1 on error
*/
-int bus_poll_start(bus_t *bus, int flags);
+int bus_poll_start(bus_t *bus);
/**
* Announce that the thread has stopped listening on the bus.
@@ -281,7 +276,7 @@ int bus_poll_stop(const bus_t *bus);
* @param bus Bus information
* @return The received message, `NULL` on error
*/
-const char *bus_poll(bus_t *bus);
+const char *bus_poll(bus_t *bus, int flags);
/**
* Wait for a message to be broadcasted on the bus.