changed lib/si/mux.c to define EPOLLRDHUP if it's not defined

This commit is contained in:
hyung-hwan 2021-12-06 13:50:00 +00:00
parent d505fcfb4c
commit 0018f96622

View File

@ -74,6 +74,9 @@
# include <sys/epoll.h> # include <sys/epoll.h>
# if defined(HAVE_EPOLL_CREATE) # if defined(HAVE_EPOLL_CREATE)
# define USE_EPOLL # define USE_EPOLL
# if !defined(EPOLLRDHUP)
# define EPOLLRDHUP (0x2000)
# endif
# endif # endif
/* /*
# elif defined(HAVE_POLL_H) # elif defined(HAVE_POLL_H)