mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
kqueue: lower overhead in uv__io_check_fd (#4617)
Merge kevent calls along with the improvement of code simplicity. Signed-off-by: Andy Pan <i@andypan.me>
This commit is contained in:
parent
15e3f84678
commit
5dcef22c62
@ -97,8 +97,7 @@ int uv__io_fork(uv_loop_t* loop) {
|
|||||||
|
|
||||||
|
|
||||||
int uv__io_check_fd(uv_loop_t* loop, int fd) {
|
int uv__io_check_fd(uv_loop_t* loop, int fd) {
|
||||||
struct kevent ev;
|
struct kevent ev[2];
|
||||||
int rc;
|
|
||||||
struct stat sb;
|
struct stat sb;
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
char path[MAXPATHLEN];
|
char path[MAXPATHLEN];
|
||||||
@ -133,17 +132,12 @@ int uv__io_check_fd(uv_loop_t* loop, int fd) {
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
rc = 0;
|
EV_SET(ev, fd, EVFILT_READ, EV_ADD, 0, 0, 0);
|
||||||
EV_SET(&ev, fd, EVFILT_READ, EV_ADD, 0, 0, 0);
|
EV_SET(ev + 1, fd, EVFILT_READ, EV_DELETE, 0, 0, 0);
|
||||||
if (kevent(loop->backend_fd, &ev, 1, NULL, 0, NULL))
|
if (kevent(loop->backend_fd, ev, 2, NULL, 0, NULL))
|
||||||
rc = UV__ERR(errno);
|
return UV__ERR(errno);
|
||||||
|
|
||||||
EV_SET(&ev, fd, EVFILT_READ, EV_DELETE, 0, 0, 0);
|
return 0;
|
||||||
if (rc == 0)
|
|
||||||
if (kevent(loop->backend_fd, &ev, 1, NULL, 0, NULL))
|
|
||||||
abort();
|
|
||||||
|
|
||||||
return rc;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user