X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Fsys%2Ftimerfd.h;fp=include%2Fsys%2Ftimerfd.h;h=0afa7b0e2b4a029805cdd0a385f60144311a149b;hb=231b9d1880bf686c0db918cea16c355f2d6598fc;hp=0000000000000000000000000000000000000000;hpb=f0f17b5b70f700f83d6ee838458d52d94d4e7ac0;p=musl 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