mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
Fix glibc compatibility
This commit is contained in:
parent
72f3fbb630
commit
32652200bf
22
base/glibc-compatibility/musl/clock_getres.c
Normal file
22
base/glibc-compatibility/musl/clock_getres.c
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
#include <time.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include "syscall.h"
|
||||||
|
|
||||||
|
int clock_getres(clockid_t clk, struct timespec *ts)
|
||||||
|
{
|
||||||
|
#ifdef SYS_clock_getres_time64
|
||||||
|
/* On a 32-bit arch, use the old syscall if it exists. */
|
||||||
|
if (SYS_clock_getres != SYS_clock_getres_time64) {
|
||||||
|
long ts32[2];
|
||||||
|
int r = __syscall(SYS_clock_getres, clk, ts32);
|
||||||
|
if (!r && ts) {
|
||||||
|
ts->tv_sec = ts32[0];
|
||||||
|
ts->tv_nsec = ts32[1];
|
||||||
|
}
|
||||||
|
return __syscall_ret(r);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
/* If reaching this point, it's a 64-bit arch or time64-only
|
||||||
|
* 32-bit arch and we can get result directly into timespec. */
|
||||||
|
return syscall(SYS_clock_getres, clk, ts);
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user