aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/timerfd.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/timerfd.h')
-rw-r--r--include/linux/timerfd.h20
1 files changed, 1 insertions, 19 deletions
diff --git a/include/linux/timerfd.h b/include/linux/timerfd.h
index bd36ce431e32..bab0b1ad0613 100644
--- a/include/linux/timerfd.h
+++ b/include/linux/timerfd.h
@@ -8,23 +8,7 @@
8#ifndef _LINUX_TIMERFD_H 8#ifndef _LINUX_TIMERFD_H
9#define _LINUX_TIMERFD_H 9#define _LINUX_TIMERFD_H
10 10
11/* For O_CLOEXEC and O_NONBLOCK */ 11#include <uapi/linux/timerfd.h>
12#include <linux/fcntl.h>
13
14/* For _IO helpers */
15#include <linux/ioctl.h>
16
17/*
18 * CAREFUL: Check include/asm-generic/fcntl.h when defining
19 * new flags, since they might collide with O_* ones. We want
20 * to re-use O_* flags that couldn't possibly have a meaning
21 * from eventfd, in order to leave a free define-space for
22 * shared O_* flags.
23 */
24#define TFD_TIMER_ABSTIME (1 << 0)
25#define TFD_TIMER_CANCEL_ON_SET (1 << 1)
26#define TFD_CLOEXEC O_CLOEXEC
27#define TFD_NONBLOCK O_NONBLOCK
28 12
29#define TFD_SHARED_FCNTL_FLAGS (TFD_CLOEXEC | TFD_NONBLOCK) 13#define TFD_SHARED_FCNTL_FLAGS (TFD_CLOEXEC | TFD_NONBLOCK)
30/* Flags for timerfd_create. */ 14/* Flags for timerfd_create. */
@@ -32,6 +16,4 @@
32/* Flags for timerfd_settime. */ 16/* Flags for timerfd_settime. */
33#define TFD_SETTIME_FLAGS (TFD_TIMER_ABSTIME | TFD_TIMER_CANCEL_ON_SET) 17#define TFD_SETTIME_FLAGS (TFD_TIMER_ABSTIME | TFD_TIMER_CANCEL_ON_SET)
34 18
35#define TFD_IOC_SET_TICKS _IOW('T', 0, u64)
36
37#endif /* _LINUX_TIMERFD_H */ 19#endif /* _LINUX_TIMERFD_H */