summaryrefslogtreecommitdiff
path: root/include/sys
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-12-13 14:15:11 -0500
committerRich Felker <dalias@aerifal.cx>2012-12-13 14:15:11 -0500
commitd50955620ff2eaa4c0aa87bb51b91d63ac8d7b94 (patch)
treed7886f9aaaaa5b9c4bf774d4c38c3d952d654b03 /include/sys
parent2384f27d34c1580dfac73d57d7c2c6b204f1d147 (diff)
downloadmusl-d50955620ff2eaa4c0aa87bb51b91d63ac8d7b94.tar.gz
add missing flags in sys/timerfd.h
Diffstat (limited to 'include/sys')
-rw-r--r--include/sys/timerfd.h6
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 *);