ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/ev_epoll.c
(Generate patch)

Comparing libev/ev_epoll.c (file contents):
Revision 1.74 by root, Sun Jun 23 00:21:24 2019 UTC vs.
Revision 1.76 by root, Wed Jun 26 00:01:46 2019 UTC

128 epoll_eperms [epoll_epermcnt++] = fd; 128 epoll_eperms [epoll_epermcnt++] = fd;
129 } 129 }
130 130
131 return; 131 return;
132 } 132 }
133 else
134 assert (("libev: I/O watcher with invalid fd found in epoll_ctl", errno != EBADF && errno != ELOOP && errno != EINVAL));
133 135
134 fd_kill (EV_A_ fd); 136 fd_kill (EV_A_ fd);
135 137
136dec_egen: 138dec_egen:
137 /* we didn't successfully call epoll_ctl, so decrement the generation counter again */ 139 /* we didn't successfully call epoll_ctl, so decrement the generation counter again */
234 } 236 }
235 } 237 }
236} 238}
237 239
238static int 240static int
239ev_epoll_create (void) 241epoll_epoll_create (void)
240{ 242{
241 int fd; 243 int fd;
242 244
243#if defined EPOLL_CLOEXEC && !defined __ANDROID__ 245#if defined EPOLL_CLOEXEC && !defined __ANDROID__
244 fd = epoll_create1 (EPOLL_CLOEXEC); 246 fd = epoll_create1 (EPOLL_CLOEXEC);
257 259
258inline_size 260inline_size
259int 261int
260epoll_init (EV_P_ int flags) 262epoll_init (EV_P_ int flags)
261{ 263{
262 if ((backend_fd = ev_epoll_create ()) < 0) 264 if ((backend_fd = epoll_epoll_create ()) < 0)
263 return 0; 265 return 0;
264 266
265 backend_mintime = 1e-3; /* epoll does sometimes return early, this is just to avoid the worst */ 267 backend_mintime = 1e-3; /* epoll does sometimes return early, this is just to avoid the worst */
266 backend_modify = epoll_modify; 268 backend_modify = epoll_modify;
267 backend_poll = epoll_poll; 269 backend_poll = epoll_poll;
284void 286void
285epoll_fork (EV_P) 287epoll_fork (EV_P)
286{ 288{
287 close (backend_fd); 289 close (backend_fd);
288 290
289 while ((backend_fd = ev_epoll_create ()) < 0) 291 while ((backend_fd = epoll_epoll_create ()) < 0)
290 ev_syserr ("(libev) epoll_create"); 292 ev_syserr ("(libev) epoll_create");
291 293
292 fd_rearm_all (EV_A); 294 fd_rearm_all (EV_A);
293} 295}
294 296

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines