Home
last modified time | relevance | path

Searched refs:fd_ep (Results 1 – 1 of 1) sorted by relevance

/systemd-251/src/libudev/
Dtest-libudev.c174 _cleanup_close_ int fd_ep; in test_monitor() local
185 fd_ep = epoll_create1(EPOLL_CLOEXEC); in test_monitor()
186 assert_se(fd_ep >= 0); in test_monitor()
200 assert_se(epoll_ctl(fd_ep, EPOLL_CTL_ADD, fd_udev, &ep_udev) >= 0); in test_monitor()
201 assert_se(epoll_ctl(fd_ep, EPOLL_CTL_ADD, STDIN_FILENO, &ep_stdin) >= 0); in test_monitor()
210 fdcount = epoll_wait(fd_ep, ev, ELEMENTSOF(ev), -1); in test_monitor()