Searched refs:g_epoll_set (Results 1 – 1 of 1) sorted by relevance
89 static epoll_set g_epoll_set; variable111 g_epoll_set.epfd = epoll_create_and_cloexec(); in epoll_set_init()112 if (g_epoll_set.epfd < 0) { in epoll_set_init()116 gpr_log(GPR_INFO, "grpc epoll fd: %d", g_epoll_set.epfd); in epoll_set_init()117 gpr_atm_no_barrier_store(&g_epoll_set.num_events, 0); in epoll_set_init()118 gpr_atm_no_barrier_store(&g_epoll_set.cursor, 0); in epoll_set_init()124 if (g_epoll_set.epfd >= 0) { in epoll_set_shutdown()125 close(g_epoll_set.epfd); in epoll_set_shutdown()126 g_epoll_set.epfd = -1; in epoll_set_shutdown()361 if (epoll_ctl(g_epoll_set.epfd, EPOLL_CTL_ADD, fd, &ev) != 0) { in fd_create()[all …]