From c82620d59c1c6e9512a89dd1ea621131c51a28fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20O=2E=20Sel=C3=A5sdal?= Date: Mon, 1 Sep 2014 22:20:10 +0200 Subject: [PATCH] eait for max 32 epoll events. 54 is too much --- src/iomux_epoll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iomux_epoll.c b/src/iomux_epoll.c index 586b5f0..0b023ef 100644 --- a/src/iomux_epoll.c +++ b/src/iomux_epoll.c @@ -12,7 +12,7 @@ ///we do not use edge triggered mode //number of events we wait for in one go -#define EPOLL_WAIT_EVENTS (64) +#define EPOLL_WAIT_EVENTS (32) struct IOMuxEpoll { //number of file descriptors we're watching