Home | History | Annotate | Download | only in epoll

Lines Matching full:epoll_fd

43                 Next run epoll_ctl on that fd (epoll_fd) with a variety of
174 #define PROTECT_FUNC(fn, errval, epoll_fd) ( \
182 return fn(epoll_fd); \
205 int epoll_fd = -1;
215 epoll_fd = epoll_create(fd_set_size);
216 if (epoll_fd >= 0) {
220 close(epoll_fd);
238 epoll_fd = epoll_create(fd_set_size);
239 if (epoll_fd == -1) {
254 close(epoll_fd);
264 epoll_fd = epoll_create(fd_set_size);
265 if (epoll_fd < 0) {
280 close(epoll_fd);
387 int test_epoll_ctl(int epoll_fd)
436 epoll_fds[0] = epoll_fd;
468 /* Now epoll_fd is a descriptor that references the set of
509 epoll_fd) {
516 neither epoll_fd nor stdin */
678 close(epoll_fd);
691 int epoll_fd;
717 /* Create an epoll_fd for testing epoll_ctl */
718 epoll_fd = epoll_create(BACKING_STORE_SIZE_HINT);
719 if (epoll_fd < 0) {
724 last_result = PROTECT_FUNC(test_epoll_ctl, -1, epoll_fd);