aboutsummaryrefslogtreecommitdiffstats
path: root/src/bus.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-05-15 15:04:25 +0200
committerMattias Andrée <maandree@operamail.com>2015-05-15 15:04:25 +0200
commit40341a0eec50588f574199a3ee213dbb97b576e5 (patch)
treedcf36c75385bb593086c10c7cf0a502d6f5311c8 /src/bus.c
parentupdate examples (diff)
downloadbus-40341a0eec50588f574199a3ee213dbb97b576e5.tar.gz
bus-40341a0eec50588f574199a3ee213dbb97b576e5.tar.bz2
bus-40341a0eec50588f574199a3ee213dbb97b576e5.tar.xz
fix nowait for polling + add nonblocking example
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/bus.c')
-rw-r--r--src/bus.c41
1 files changed, 29 insertions, 12 deletions
diff --git a/src/bus.c b/src/bus.c
index 72747ea..4b2d0f9 100644
--- a/src/bus.c
+++ b/src/bus.c
@@ -745,14 +745,25 @@ done:
* misbehave, is `bus_poll` is written to expect
* this function to have been called.
*
- * @param bus Bus information
- * @return 0 on success, -1 on error
+ * @param bus Bus information
+ * @param flags `IPC_NOWAIT` if the bus should fail and set `errno` to
+ * `EAGAIN` if there isn't already a message available on
+ * the bus when `bus_poll` is called
+ * @return 0 on success, -1 on error
*/
int
-bus_poll_start(bus_t *bus)
+bus_poll_start(bus_t *bus, int flags)
{
bus->first_poll = 1;
- return release_semaphore(bus, S, SEM_UNDO);
+ bus->flags = flags;
+ t(release_semaphore(bus, S, SEM_UNDO));
+ if (flags & BUS_NOWAIT) {
+ t(release_semaphore(bus, Q, 0));
+ }
+ return 0;
+
+fail:
+ return -1;
}
@@ -779,29 +790,35 @@ bus_poll_stop(const bus_t *bus)
* started, the caller of this function should then
* either call `bus_poll` again or `bus_poll_stop`.
*
- * @param bus Bus information
- * @param flags `IPC_NOWAIT` if the bus should fail and set `errno` to
- * `EAGAIN` if this isn't already a message available on the bus
- * @return The received message, `NULL` on error
+ * @param bus Bus information
+ * @return The received message, `NULL` on error
*/
const char *
-bus_poll(bus_t *bus, int flags)
+bus_poll(bus_t *bus)
{
int state = 0, saved_errno;
- (void) flags;
if (!bus->first_poll) {
t(release_semaphore(bus, W, SEM_UNDO)); state++;
t(acquire_semaphore(bus, S, SEM_UNDO)); state++;
t(zero_semaphore(bus, S, 0));
+#ifndef BUS_SEMAPHORES_ARE_SYNCHRONOUS_ME_HARDER
t(zero_semaphore(bus, N, 0));
+#endif
t(release_semaphore(bus, S, SEM_UNDO)); state--;
t(acquire_semaphore(bus, W, SEM_UNDO)); state--;
+ if (bus->flags & BUS_NOWAIT) {
+ t(release_semaphore(bus, Q, 0));
+ }
} else {
bus->first_poll = 0;
}
state--;
- t(release_semaphore(bus, Q, 0));
- t(zero_semaphore(bus, Q, F(BUS_NOWAIT, IPC_NOWAIT)));
+ if (bus->flags & BUS_NOWAIT) {
+ t(zero_semaphore(bus, Q, IPC_NOWAIT));
+ } else {
+ t(release_semaphore(bus, Q, 0));
+ t(zero_semaphore(bus, Q, 0));
+ }
return bus->message;
fail: