timerfd.h 508 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * include/linux/timerfd.h
  4. *
  5. * Copyright (C) 2007 Davide Libenzi <davidel@xmailserver.org>
  6. *
  7. */
  8. #ifndef _LINUX_TIMERFD_H
  9. #define _LINUX_TIMERFD_H
  10. #include <uapi/linux/timerfd.h>
  11. #define TFD_SHARED_FCNTL_FLAGS (TFD_CLOEXEC | TFD_NONBLOCK)
  12. /* Flags for timerfd_create. */
  13. #define TFD_CREATE_FLAGS TFD_SHARED_FCNTL_FLAGS
  14. /* Flags for timerfd_settime. */
  15. #define TFD_SETTIME_FLAGS (TFD_TIMER_ABSTIME | TFD_TIMER_CANCEL_ON_SET)
  16. #endif /* _LINUX_TIMERFD_H */