Lines Matching refs:timerfd
30 #include <sys/timerfd.h>
1497 static int sample_timer_cb(int timerfd, struct stats_record **rec,
1504 ret = read(timerfd, &t, sizeof(t));
1537 int timerfd, ret;
1547 timerfd = timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC | TFD_NONBLOCK);
1548 if (timerfd < 0)
1550 timerfd_settime(timerfd, 0, &its, NULL);
1555 pfd[1].fd = timerfd;
1582 ret = sample_timer_cb(timerfd, &rec, &prev);
1596 close(timerfd);