uncomment epoll and poll compile-time selectors

This commit is contained in:
hyung-hwan 2023-11-20 13:46:18 +09:00
parent 37d072c26a
commit 6c8a0d0780

View File

@ -33,13 +33,12 @@
# include <sys/types.h>
# include <sys/event.h>
# define USE_KQUEUE
/*
#elif defined(HAVE_SYS_EPOLL_H)
# include <sys/epoll.h>
# define USE_EPOLL
#elif defined(HAVE_SYS_POLL_H)
# include <sys/poll.h>
# define USE_POLL*/
# define USE_POLL
#elif defined(HAVE_SYS_SELECT_H)
/*# define FD_SETSIZE 4096*/
# include <sys/select.h>