add timerfd interfaces (untested)

This commit is contained in:
Rich Felker 2012-09-08 00:21:02 -04:00
parent f0f17b5b70
commit 231b9d1880
2 changed files with 35 additions and 0 deletions

18
include/sys/timerfd.h Normal file
View File

@ -0,0 +1,18 @@
#ifndef _SYS_TIMERFD_H
#define _SYS_TIMERFD_H
#ifdef __cplusplus
extern "C" {
#endif
#include <time.h>
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

17
src/linux/timerfd.c Normal file
View File

@ -0,0 +1,17 @@
#include <sys/timerfd.h>
#include "syscall.h"
int timerfd_create(int clockid, int flags)
{
return syscall(SYS_timerfd_create, clockid, flags);
}
int timerfd_settime(int fd, int flags, const struct itimerspec *new, struct itimerspec *old)
{
return syscall(SYS_timerfd_settime, fd, flags, new, old);
}
int timerfd_gettime(int fd, struct itimerspec *cur)
{
return syscall(SYS_timerfd_gettime, fd, cur);
}