https://github.com/torvalds/linux
Raw File
Tip revision: 7928b2cbe55b2a410a0f5c1f154610059c57b1b2 authored by Linus Torvalds on 11 February 2018, 23:04:29 UTC
Linux 4.16-rc1
Tip revision: 7928b2c
timerfd.h
/* SPDX-License-Identifier: GPL-2.0 */
/*
 *  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 */
back to top