HomeSort by relevance Sort by last modified time
    Searched defs:timerfd (Results 1 - 3 of 3) sorted by null

  /external/linux-kselftest/tools/testing/selftests/breakpoints/
step_after_suspend_test.c 27 #include <sys/timerfd.h>
142 int timerfd; local
151 timerfd = timerfd_create(CLOCK_BOOTTIME_ALARM, 0);
152 if (timerfd < 0)
156 err = timerfd_settime(timerfd, 0, &spec, NULL);
163 close(timerfd);
  /external/libevent/
epoll.c 51 #include <sys/timerfd.h>
79 /* Note that we only use timerfd if TFD_NONBLOCK and TFD_CLOEXEC are available
80 and working. This means that we can't support it on 2.6.25 (where timerfd
91 int timerfd; member in struct:epollop
189 event_base, we can try to use timerfd to give them finer granularity.
194 fd = epollop->timerfd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK|TFD_CLOEXEC);
195 if (epollop->timerfd >= 0) {
198 epev.data.fd = epollop->timerfd;
201 event_warn("epoll_ctl(timerfd)");
203 epollop->timerfd = -1
    [all...]
  /external/libusb/libusb/
libusbi.h 329 * this timerfd is maintained to trigger on the next pending timeout */
330 int timerfd; member in struct:libusb_context
360 #define usbi_using_timerfd(ctx) ((ctx)->timerfd >= 0)
    [all...]

Completed in 114 milliseconds