From 231b9d1880bf686c0db918cea16c355f2d6598fc Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 8 Sep 2012 00:21:02 -0400 Subject: add timerfd interfaces (untested) --- include/sys/timerfd.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 include/sys/timerfd.h (limited to 'include/sys/timerfd.h') diff --git a/include/sys/timerfd.h b/include/sys/timerfd.h new file mode 100644 index 00000000..0afa7b0e --- /dev/null +++ b/include/sys/timerfd.h @@ -0,0 +1,18 @@ +#ifndef _SYS_TIMERFD_H +#define _SYS_TIMERFD_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include + +int timerfd_create(int, int); +int timerfd_settime(int, int, const struct itimerspec *, struct itimerspec *); +int timerfd_gettime(int, struct itimerspec *); + +#ifdef __cplusplus +} +#endif + +#endif -- cgit v1.2.1