F-Stack / f-stack

F-Stack is an user space network development kit with high performance based on DPDK, FreeBSD TCP/IP stack and coroutine API.
http://www.f-stack.org
Other
3.76k stars 879 forks source link

The timeout of ff_kevent_do_each has no effect, no matter kqueue or epoll_wait ?? #760

Closed beef9999 closed 1 year ago

beef9999 commented 1 year ago

How to poll a fixed number of time...

beef9999 commented 1 year ago
    struct timespec ts;
    ts.tv_sec = 0;
    ts.tv_nsec = 0;

Looks like this timespec needs to be passed to kern_kevent. Would you like me to fix it with a pull request?