20 lines
469 B
C
20 lines
469 B
C
/*
|
|
* include/linux/timerfd.h
|
|
*
|
|
* Copyright (C) 2007 Davide Libenzi <davidel@xmailserver.org>
|
|
*
|
|
*/
|
|
|
|
#ifndef _LINUX_TIMERFD_H
|
|
#define _LINUX_TIMERFD_H
|
|
|
|
#include <uapi/linux/timerfd.h>
|
|
|
|
#define TFD_SHARED_FCNTL_FLAGS (TFD_CLOEXEC | TFD_NONBLOCK)
|
|
/* Flags for timerfd_create. */
|
|
#define TFD_CREATE_FLAGS TFD_SHARED_FCNTL_FLAGS
|
|
/* Flags for timerfd_settime. */
|
|
#define TFD_SETTIME_FLAGS (TFD_TIMER_ABSTIME | TFD_TIMER_CANCEL_ON_SET)
|
|
|
|
#endif /* _LINUX_TIMERFD_H */
|