mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 08:35:20 +00:00
18 lines
417 B
C
18 lines
417 B
C
#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);
|
|
}
|