1 // SPDX-License-Identifier: GPL-2.0
3 * test for timerfd functions used by perf-kvm-stat-live
5 #include <sys/timerfd.h>
9 struct itimerspec new_value
;
11 int fd
= timerfd_create(CLOCK_MONOTONIC
, TFD_NONBLOCK
);
15 if (timerfd_settime(fd
, 0, &new_value
, NULL
) != 0)