summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2016-03-26 23:13:57 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2016-03-26 23:14:14 +0100
commit9b84e5e3b0d2fd29391618fb56367a4661732b60 (patch)
tree9ebd192a39224482a1efd5bd63e0342f7cae8d82 /src
parenta2c6604e73e389d2ad861dbb62367c0c96551032 (diff)
downloadfastd-9b84e5e3b0d2fd29391618fb56367a4661732b60.tar
fastd-9b84e5e3b0d2fd29391618fb56367a4661732b60.zip
poll: fix epoll support
Diffstat (limited to 'src')
-rw-r--r--src/poll.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/poll.c b/src/poll.c
index cdb550a..a3326a7 100644
--- a/src/poll.c
+++ b/src/poll.c
@@ -164,14 +164,7 @@ bool fastd_poll_fd_close(fastd_poll_fd_t *fd) {
void fastd_poll_handle(void) {
- int maintenance_timeout = ctx.next_maintenance - ctx.now;
-
- if (maintenance_timeout < 0)
- maintenance_timeout = 0;
-
- int timeout = handshake_timeout();
- if (timeout < 0 || timeout > maintenance_timeout)
- timeout = maintenance_timeout;
+ int timeout = task_timeout();
struct epoll_event events[16];
int ret = epoll_wait_unblocked(ctx.epoll_fd, events, 16, timeout);