Release 4.10 include/linux/timerfd.h
/*
* 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 */
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
davide libenzi | davide libenzi | 23 | 85.19% | 2 | 40.00% |
cyrill gorcunov | cyrill gorcunov | 2 | 7.41% | 1 | 20.00% |
thomas gleixner | thomas gleixner | 1 | 3.70% | 1 | 20.00% |
mike frysinger | mike frysinger | 1 | 3.70% | 1 | 20.00% |
| Total | 27 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.