/* * test for timerfd functions used by perf-kvm-stat-live */ #include int main(void) { struct itimerspec new_value; int fd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK); if (fd < 0) return 1; if (timerfd_settime(fd, 0, &new_value, NULL) != 0) return 1; return 0; } l'/>
summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2017-02-09cfg80211: fix NAN bands definitionLuca Coelho1-5/+13
2017-02-08cfg80211: Pass new RSSI level in CQM RSSI notificationAndrzej Zaborowski1-1/+2
2017-02-08nl80211: add HT/VHT capabilities to AP parametersJohannes Berg1-0/+8