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.71 by root, Thu Feb 18 04:48:05 2016 UTC vs.
Revision 1.72 by root, Wed Jun 21 14:42:30 2017 UTC

237 237
238inline_size 238inline_size
239int 239int
240epoll_init (EV_P_ int flags) 240epoll_init (EV_P_ int flags)
241{ 241{
242#ifdef EPOLL_CLOEXEC 242#if defined EPOLL_CLOEXEC && !defined __ANDROID__
243 backend_fd = epoll_create1 (EPOLL_CLOEXEC); 243 backend_fd = epoll_create1 (EPOLL_CLOEXEC);
244 244
245 if (backend_fd < 0 && (errno == EINVAL || errno == ENOSYS)) 245 if (backend_fd < 0 && (errno == EINVAL || errno == ENOSYS))
246#endif 246#endif
247 backend_fd = epoll_create (256); 247 backend_fd = epoll_create (256);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines