summaryrefslogtreecommitdiffstats
path: root/src/poll.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/poll.c')
-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);