mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Add timerfd from musl
This commit is contained in:
parent
116bed2cfd
commit
dd6b5baa59
17
base/glibc-compatibility/musl/timerfd.c
Normal file
17
base/glibc-compatibility/musl/timerfd.c
Normal 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);
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user