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.50 by root, Tue Jul 9 06:30:14 2019 UTC vs.
Revision 1.54 by sf-exg, Sun May 14 19:02:31 2023 UTC

91/*****************************************************************************/ 91/*****************************************************************************/
92/* syscall wrapdadoop - this section has the raw api/abi definitions */ 92/* syscall wrapdadoop - this section has the raw api/abi definitions */
93 93
94#include <sys/syscall.h> /* no glibc wrappers */ 94#include <sys/syscall.h> /* no glibc wrappers */
95 95
96/* aio_abi.h is not versioned in any way, so we cannot test for its existance */ 96/* aio_abi.h is not versioned in any way, so we cannot test for its existence */
97#define IOCB_CMD_POLL 5 97#define IOCB_CMD_POLL 5
98 98
99/* taken from linux/fs/aio.c. yup, that's a .c file. 99/* taken from linux/fs/aio.c. yup, that's a .c file.
100 * not only is this totally undocumented, not even the source code 100 * not only is this totally undocumented, not even the source code
101 * can tell you what the future semantics of compat_features and 101 * can tell you what the future semantics of compat_features and
268 268
269 /* increment generation counter to avoid handling old events */ 269 /* increment generation counter to avoid handling old events */
270 ++anfd->egen; 270 ++anfd->egen;
271 } 271 }
272 272
273 iocb->io.aio_buf = 273 iocb->io.aio_buf = (nev & EV_READ ? POLLIN : 0)
274 (nev & EV_READ ? POLLIN : 0)
275 | (nev & EV_WRITE ? POLLOUT : 0); 274 | (nev & EV_WRITE ? POLLOUT : 0);
276 275
277 if (nev) 276 if (nev)
278 { 277 {
279 iocb->io.aio_data = (uint32_t)fd | ((__u64)(uint32_t)anfd->egen << 32); 278 iocb->io.aio_data = (uint32_t)fd | ((__u64)(uint32_t)anfd->egen << 32);
280 279
437 break; 436 break;
438 } 437 }
439 else 438 else
440 break; /* no events from the kernel, we are done */ 439 break; /* no events from the kernel, we are done */
441 440
442 timeout = 0; /* only wait in the first iteration */ 441 timeout = EV_TS_CONST (0.); /* only wait in the first iteration */
443 } 442 }
444} 443}
445 444
446inline_size 445inline_size
447int 446int
517 backend = EVBACKEND_EPOLL; 516 backend = EVBACKEND_EPOLL;
518 backend_modify = epoll_modify; 517 backend_modify = epoll_modify;
519 backend_poll = epoll_poll; 518 backend_poll = epoll_poll;
520 } 519 }
521 520
522 timeout = 0; 521 timeout = EV_TS_CONST (0.);
523 /* it's easiest to handle this mess in another iteration */ 522 /* it's easiest to handle this mess in another iteration */
524 return; 523 return;
525 } 524 }
526 else if (errno == EBADF) 525 else if (errno == EBADF)
527 { 526 {
567 { 566 {
568 epoll_destroy (EV_A); 567 epoll_destroy (EV_A);
569 return 0; 568 return 0;
570 } 569 }
571 570
572 ev_io_init (EV_A_ &linuxaio_epoll_w, linuxaio_epoll_cb, backend_fd, EV_READ); 571 ev_io_init (&linuxaio_epoll_w, linuxaio_epoll_cb, backend_fd, EV_READ);
573 ev_set_priority (&linuxaio_epoll_w, EV_MAXPRI); 572 ev_set_priority (&linuxaio_epoll_w, EV_MAXPRI);
574 ev_io_start (EV_A_ &linuxaio_epoll_w); 573 ev_io_start (EV_A_ &linuxaio_epoll_w);
575 ev_unref (EV_A); /* watcher should not keep loop alive */ 574 ev_unref (EV_A); /* watcher should not keep loop alive */
576 575
577 backend_modify = linuxaio_modify; 576 backend_modify = linuxaio_modify;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines