Home
last modified time | relevance | path

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

/external/libiio/src/iiod/
Dthread-pool.c42 int stop_fd; member
133 pool->stop_fd = eventfd(0, EFD_NONBLOCK); in thread_pool_new()
134 if (pool->stop_fd == -1) { in thread_pool_new()
151 return pool->stop_fd; in thread_pool_get_poll_fd()
160 ret = write(pool->stop_fd, &e, sizeof(e)); in thread_pool_stop()
178 ret = read(pool->stop_fd, &e, sizeof(e)); in thread_pool_stop_and_wait()
187 close(pool->stop_fd); in thread_pool_destroy()
Dusbd.c181 int stop_fd = thread_pool_get_poll_fd(pool); in usbd_main() local
193 pfd[1].fd = stop_fd; in usbd_main()