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

  /external/libusb/libusb/
libusbi.h 193 * this timerfd is maintained to trigger on the next pending timeout */
194 int timerfd; member in struct:libusb_context
199 #define usbi_using_timerfd(ctx) ((ctx)->timerfd >= 0)
777 /* clock ID of the clock that should be used for timerfd */
  /external/linux-tools-perf/src/tools/perf/
builtin-kvm.c 22 #include <sys/timerfd.h>
116 int timerfd; member in struct:perf_kvm_stat
974 kvm->timerfd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK);
975 if (kvm->timerfd < 0) {
985 if (timerfd_settime(kvm->timerfd, 0, &new_value, NULL) != 0) {
987 close(kvm->timerfd);
1001 rc = read(kvm->timerfd, &c, sizeof(uint64_t));
1094 /* copy pollfds -- need to add timerfd and stdin */
1110 pollfds[nr_fds].fd = kvm->timerfd;
1150 if (kvm->timerfd >= 0
    [all...]

Completed in 892 milliseconds