Add a useful assertion to the poller
This commit is contained in:
parent
8de88140f5
commit
6c30579882
2
utils.c
2
utils.c
|
@ -1238,6 +1238,8 @@ poller_run (struct poller *self)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
struct poller_fd *fd = revents->data.ptr;
|
struct poller_fd *fd = revents->data.ptr;
|
||||||
|
hard_assert (fd->index != -1);
|
||||||
|
|
||||||
struct pollfd pfd;
|
struct pollfd pfd;
|
||||||
pfd.fd = fd->fd;
|
pfd.fd = fd->fd;
|
||||||
pfd.revents = poller_epoll_to_poll_events (revents->events);
|
pfd.revents = poller_epoll_to_poll_events (revents->events);
|
||||||
|
|
Loading…
Reference in New Issue