]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/linux/timerfd.h
flag parameters: NONBLOCK in eventfd
[mirror_ubuntu-zesty-kernel.git] / include / linux / timerfd.h
CommitLineData
b215e283
DL
1/*
2 * include/linux/timerfd.h
3 *
4 * Copyright (C) 2007 Davide Libenzi <davidel@xmailserver.org>
5 *
6 */
7
8#ifndef _LINUX_TIMERFD_H
9#define _LINUX_TIMERFD_H
10
11fcb6c1
UD
11/* For O_CLOEXEC */
12#include <linux/fcntl.h>
b215e283 13
11fcb6c1 14/* Flags for timerfd_settime. */
b215e283
DL
15#define TFD_TIMER_ABSTIME (1 << 0)
16
11fcb6c1
UD
17/* Flags for timerfd_create. */
18#define TFD_CLOEXEC O_CLOEXEC
b215e283
DL
19
20
21#endif /* _LINUX_TIMERFD_H */
22