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

Comparing libev/ev_linuxaio.c (file contents):
Revision 1.34 by root, Wed Jun 26 00:01:46 2019 UTC vs.
Revision 1.35 by root, Wed Jun 26 00:11:24 2019 UTC

322linuxaio_epoll_cb (EV_P_ struct ev_io *w, int revents) 322linuxaio_epoll_cb (EV_P_ struct ev_io *w, int revents)
323{ 323{
324 epoll_poll (EV_A_ 0); 324 epoll_poll (EV_A_ 0);
325} 325}
326 326
327static void 327inline_speed
328void
328linuxaio_fd_rearm (EV_P_ int fd) 329linuxaio_fd_rearm (EV_P_ int fd)
329{ 330{
330 anfds [fd].events = 0; 331 anfds [fd].events = 0;
331 linuxaio_iocbps [fd]->io.aio_buf = 0; 332 linuxaio_iocbps [fd]->io.aio_buf = 0;
332 fd_change (EV_A_ fd, EV_ANFD_REIFY); 333 fd_change (EV_A_ fd, EV_ANFD_REIFY);
348 fd, 349 fd,
349 (res & (POLLOUT | POLLERR | POLLHUP) ? EV_WRITE : 0) 350 (res & (POLLOUT | POLLERR | POLLHUP) ? EV_WRITE : 0)
350 | (res & (POLLIN | POLLERR | POLLHUP) ? EV_READ : 0) 351 | (res & (POLLIN | POLLERR | POLLHUP) ? EV_READ : 0)
351 ); 352 );
352 353
353 /* linux aio is oneshot: rearm fd. TODO: this does more work than needed */ 354 /* linux aio is oneshot: rearm fd. TODO: this does more work than strictly needed */
354 linuxaio_fd_rearm (EV_A_ fd); 355 linuxaio_fd_rearm (EV_A_ fd);
355 356
356 --nr; 357 --nr;
357 ++ev; 358 ++ev;
358 } 359 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines