X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/24accab2aa62f6ed1b87c6178f2003e37f0adbfd..d10a01bb6d8645f66b66e1fb3d1c52a0dd7bd8fe:/src/ae_epoll.c diff --git a/src/ae_epoll.c b/src/ae_epoll.c index cac10d67..0231f243 100644 --- a/src/ae_epoll.c +++ b/src/ae_epoll.c @@ -89,6 +89,8 @@ static int aeApiPoll(aeEventLoop *eventLoop, struct timeval *tvp) { if (e->events & EPOLLIN) mask |= AE_READABLE; if (e->events & EPOLLOUT) mask |= AE_WRITABLE; + if (e->events & EPOLLERR) mask |= AE_WRITABLE; + if (e->events & EPOLLHUP) mask |= AE_WRITABLE; eventLoop->fired[j].fd = e->data.fd; eventLoop->fired[j].mask = mask; }