Home | History | Annotate | Download | only in net

Lines Matching refs:epfd

150 void receive_on_cpu(int *rcv_fd, int len, int epfd, int cpu_id, int proto)
156 i = epoll_wait(epfd, &ev, 1, -1);
186 int epfd, cpu;
191 epfd = epoll_create(1);
192 if (epfd < 0)
197 if (epoll_ctl(epfd, EPOLL_CTL_ADD, rcv_fd[cpu], &ev))
204 receive_on_cpu(rcv_fd, len, epfd, cpu, proto);
210 receive_on_cpu(rcv_fd, len, epfd, cpu, proto);
216 receive_on_cpu(rcv_fd, len, epfd, cpu, proto);
222 receive_on_cpu(rcv_fd, len, epfd, cpu, proto);
225 close(epfd);