diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-12-13 14:15:11 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-12-13 14:15:11 -0500 |
commit | d50955620ff2eaa4c0aa87bb51b91d63ac8d7b94 (patch) | |
tree | d7886f9aaaaa5b9c4bf774d4c38c3d952d654b03 /include/sys/timerfd.h | |
parent | 2384f27d34c1580dfac73d57d7c2c6b204f1d147 (diff) | |
download | musl-d50955620ff2eaa4c0aa87bb51b91d63ac8d7b94.tar.gz musl-d50955620ff2eaa4c0aa87bb51b91d63ac8d7b94.tar.xz musl-d50955620ff2eaa4c0aa87bb51b91d63ac8d7b94.zip |
add missing flags in sys/timerfd.h
Diffstat (limited to 'include/sys/timerfd.h')
-rw-r--r-- | include/sys/timerfd.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/sys/timerfd.h b/include/sys/timerfd.h index 0afa7b0e..df645fe8 100644 --- a/include/sys/timerfd.h +++ b/include/sys/timerfd.h @@ -6,6 +6,12 @@ extern "C" { #endif #include <time.h> +#include <fcntl.h> + +#define TFD_NONBLOCK O_NONBLOCK +#define TFD_CLOEXEC O_CLOEXEC + +#define TFD_TIMER_ABSTIME 1 int timerfd_create(int, int); int timerfd_settime(int, int, const struct itimerspec *, struct itimerspec *); |