mirror of https://git.musl-libc.org/git/musl
2 changed files with 35 additions and 0 deletions
@ -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 |
||||
@ -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); |
||||
|
} |
||||
Loading…
Reference in new issue