X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/36dda9554a826104653765ec8782e055384c39f1..f1466e11cd1c2c41f01e505e54f465d0eb4b4f42:/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; }