Files
linux-apfs/include/linux/timerfd.h
T

23 lines
370 B
C
Raw Normal View History

2007-05-10 22:23:16 -07:00
/*
* include/linux/timerfd.h
*
* Copyright (C) 2007 Davide Libenzi <davidel@xmailserver.org>
*
*/
#ifndef _LINUX_TIMERFD_H
#define _LINUX_TIMERFD_H
2008-07-23 21:29:26 -07:00
/* For O_CLOEXEC */
#include <linux/fcntl.h>
2007-05-10 22:23:16 -07:00
2008-07-23 21:29:26 -07:00
/* Flags for timerfd_settime. */
2007-05-10 22:23:16 -07:00
#define TFD_TIMER_ABSTIME (1 << 0)
2008-07-23 21:29:26 -07:00
/* Flags for timerfd_create. */
#define TFD_CLOEXEC O_CLOEXEC
2007-05-10 22:23:16 -07:00
#endif /* _LINUX_TIMERFD_H */