Revert "Copy epoll(2) changes to minadb."
This reverts commit db8c959049
.
This commit is contained in:
parent
530b61e0b5
commit
f420f8eb63
1 changed files with 21 additions and 4 deletions
|
@ -102,7 +102,8 @@ static fdevent list_pending = {
|
||||||
static fdevent **fd_table = 0;
|
static fdevent **fd_table = 0;
|
||||||
static int fd_table_max = 0;
|
static int fd_table_max = 0;
|
||||||
|
|
||||||
#ifdef __linux__
|
#ifdef CRAPTASTIC
|
||||||
|
//HAVE_EPOLL
|
||||||
|
|
||||||
#include <sys/epoll.h>
|
#include <sys/epoll.h>
|
||||||
|
|
||||||
|
@ -110,16 +111,32 @@ static int epoll_fd = -1;
|
||||||
|
|
||||||
static void fdevent_init()
|
static void fdevent_init()
|
||||||
{
|
{
|
||||||
epoll_fd = epoll_create1(EPOLL_CLOEXEC);
|
/* XXX: what's a good size for the passed in hint? */
|
||||||
if(epoll_fd == -1) {
|
epoll_fd = epoll_create(256);
|
||||||
|
|
||||||
|
if(epoll_fd < 0) {
|
||||||
perror("epoll_create() failed");
|
perror("epoll_create() failed");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* mark for close-on-exec */
|
||||||
|
fcntl(epoll_fd, F_SETFD, FD_CLOEXEC);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void fdevent_connect(fdevent *fde)
|
static void fdevent_connect(fdevent *fde)
|
||||||
{
|
{
|
||||||
// Nothing to do here. fdevent_update will handle the EPOLL_CTL_ADD.
|
struct epoll_event ev;
|
||||||
|
|
||||||
|
memset(&ev, 0, sizeof(ev));
|
||||||
|
ev.events = 0;
|
||||||
|
ev.data.ptr = fde;
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
if(epoll_ctl(epoll_fd, EPOLL_CTL_ADD, fde->fd, &ev)) {
|
||||||
|
perror("epoll_ctl() failed\n");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
static void fdevent_disconnect(fdevent *fde)
|
static void fdevent_disconnect(fdevent *fde)
|
||||||
|
|
Loading…
Reference in a new issue