2 * Copyright (c) 2007 Marc Alexander Lehmann <libev@schmorp.de>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following
14 * disclaimer in the documentation and/or other materials provided
15 * with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 #include <sys/epoll.h>
32 static int epoll_fd = -1;
35 epoll_modify (int fd, int oev, int nev)
37 int mode = nev ? oev ? EPOLL_CTL_MOD : EPOLL_CTL_ADD : EPOLL_CTL_DEL;
39 struct epoll_event ev;
42 (nev & EV_READ ? EPOLLIN : 0)
43 | (nev & EV_WRITE ? EPOLLOUT : 0);
45 epoll_ctl (epoll_fd, mode, fd, &ev);
49 epoll_postfork_child (void)
53 epoll_fd = epoll_create (256);
54 fcntl (epoll_fd, F_SETFD, FD_CLOEXEC);
56 /* re-register interest in fds */
57 for (fd = 0; fd < anfdmax; ++fd)
58 if (anfds [fd].events && !(anfds [fd].events & EV_REIFY))//D
59 epoll_modify (fd, EV_NONE, anfds [fd].events);
62 static struct epoll_event *events;
66 epoll_poll (ev_tstamp timeout)
68 int eventcnt = epoll_wait (epoll_fd, events, eventmax, ceil (timeout * 1000.));
74 for (i = 0; i < eventcnt; ++i)
77 (events [i].events & (EPOLLOUT | EPOLLERR | EPOLLHUP) ? EV_WRITE : 0)
78 | (events [i].events & (EPOLLIN | EPOLLERR | EPOLLHUP) ? EV_READ : 0)
81 /* if the receive array was full, increase its size */
82 if (eventcnt == eventmax)
85 eventmax += eventmax >> 1;
86 events = malloc (sizeof (struct epoll_event) * eventmax);
91 epoll_init (int flags)
93 epoll_fd = epoll_create (256);
98 fcntl (epoll_fd, F_SETFD, FD_CLOEXEC);
100 ev_method = EVMETHOD_EPOLL;
101 method_fudge = 1e-3; /* needed to compensate for epoll returning early */
102 method_modify = epoll_modify;
103 method_poll = epoll_poll;
105 eventmax = 64; /* intiial number of events receivable per poll */
106 events = malloc (sizeof (struct epoll_event) * eventmax);