flag parameters: timerfd_create
[linux-2.6/zen-sources.git] / include / linux / timerfd.h
blob96ed97dff00f3114e6f03f2ad412acfff7203d56
1 /*
2 * include/linux/timerfd.h
4 * Copyright (C) 2007 Davide Libenzi <davidel@xmailserver.org>
6 */
8 #ifndef _LINUX_TIMERFD_H
9 #define _LINUX_TIMERFD_H
11 /* For O_CLOEXEC */
12 #include <linux/fcntl.h>
14 /* Flags for timerfd_settime. */
15 #define TFD_TIMER_ABSTIME (1 << 0)
17 /* Flags for timerfd_create. */
18 #define TFD_CLOEXEC O_CLOEXEC
21 #endif /* _LINUX_TIMERFD_H */