Searched refs:epollop (Results 1 – 1 of 1) sorted by relevance
86 struct epollop { struct144 struct epollop *epollop; in epoll_init() local161 if (!(epollop = mm_calloc(1, sizeof(struct epollop)))) { in epoll_init()166 epollop->epfd = epfd; in epoll_init()169 epollop->events = mm_calloc(INITIAL_NEVENT, sizeof(struct epoll_event)); in epoll_init()170 if (epollop->events == NULL) { in epoll_init()171 mm_free(epollop); in epoll_init()175 epollop->nevents = INITIAL_NEVENT; in epoll_init()194 fd = epollop->timerfd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK|TFD_CLOEXEC); in epoll_init()195 if (epollop->timerfd >= 0) { in epoll_init()[all …]