repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mm, oom: do not rely on TIF_MEMDIE for memory reserves access
[linux/fpc-iii.git]
/
tools
/
build
/
feature
/
test-timerfd.c
blob
8c5c083b4d3caadf8bc92b82910a261f3f91a16a
1
/*
2
* test for timerfd functions used by perf-kvm-stat-live
3
*/
4
#include <sys/timerfd.h>
5
6
int
main
(
void
)
7
{
8
struct
itimerspec new_value
;
9
10
int
fd
=
timerfd_create
(
CLOCK_MONOTONIC
,
TFD_NONBLOCK
);
11
if
(
fd
<
0
)
12
return
1
;
13
14
if
(
timerfd_settime
(
fd
,
0
, &
new_value
,
NULL
) !=
0
)
15
return
1
;
16
17
return
0
;
18
}