Home | History | Annotate | Download | only in rtl

Lines Matching refs:epfd

1580 TSAN_INTERCEPTOR(int, epoll_ctl, int epfd, int op, int fd, void *ev) {
1581 SCOPED_TSAN_INTERCEPTOR(epoll_ctl, epfd, op, fd, ev);
1582 if (op == EPOLL_CTL_ADD && epfd >= 0) {
1583 FdRelease(thr, pc, epfd);
1585 int res = REAL(epoll_ctl)(epfd, op, fd, ev);
1591 TSAN_INTERCEPTOR(int, epoll_wait, int epfd, void *ev, int cnt, int timeout) {
1592 SCOPED_TSAN_INTERCEPTOR(epoll_wait, epfd, ev, cnt, timeout);
1593 int res = BLOCK_REAL(epoll_wait)(epfd, ev, cnt, timeout);
1594 if (res > 0 && epfd >= 0) {
1595 FdAcquire(thr, pc, epfd);