Home | History | Annotate | Download | only in rtl

Lines Matching refs:epfd

1543 TSAN_INTERCEPTOR(int, epoll_ctl, int epfd, int op, int fd, void *ev) {
1544 SCOPED_TSAN_INTERCEPTOR(epoll_ctl, epfd, op, fd, ev);
1545 if (op == EPOLL_CTL_ADD && epfd >= 0) {
1546 FdRelease(thr, pc, epfd);
1548 int res = REAL(epoll_ctl)(epfd, op, fd, ev);
1554 TSAN_INTERCEPTOR(int, epoll_wait, int epfd, void *ev, int cnt, int timeout) {
1555 SCOPED_TSAN_INTERCEPTOR(epoll_wait, epfd, ev, cnt, timeout);
1556 int res = BLOCK_REAL(epoll_wait)(epfd, ev, cnt, timeout);
1557 if (res > 0 && epfd >= 0) {
1558 FdAcquire(thr, pc, epfd);