OLD | NEW |
---|---|
(Empty) | |
1 #include <sys/timerfd.h> | |
2 #include "syscall.h" | |
3 | |
4 int timerfd_create(int clockid, int flags) | |
5 { | |
6 return syscall(SYS_timerfd_create, clockid, flags); | |
7 } | |
8 | |
9 int timerfd_settime(int fd, int flags, const struct itimerspec *new, struct itim erspec *old) | |
10 { | |
11 return syscall(SYS_timerfd_settime, fd, flags, new, old); | |
12 } | |
13 | |
14 int timerfd_gettime(int fd, struct itimerspec *cur) | |
15 { | |
16 return syscall(SYS_timerfd_gettime, fd, cur); | |
17 } | |
OLD | NEW |