|
@@ -1,7 +1,28 @@
|
|
#include <time.h>
|
|
#include <time.h>
|
|
|
|
+#include <errno.h>
|
|
|
|
+#include <stdint.h>
|
|
#include "syscall.h"
|
|
#include "syscall.h"
|
|
|
|
+#include "libc.h"
|
|
|
|
|
|
-int clock_gettime(clockid_t clk, struct timespec *ts)
|
|
|
|
|
|
+int __vdso_clock_gettime(clockid_t, struct timespec *) __attribute__((weak));
|
|
|
|
+static int (*cgt)(clockid_t, struct timespec *) = __vdso_clock_gettime;
|
|
|
|
+
|
|
|
|
+int __clock_gettime(clockid_t clk, struct timespec *ts)
|
|
{
|
|
{
|
|
- return syscall(SYS_clock_gettime, clk, ts);
|
|
|
|
|
|
+ int r;
|
|
|
|
+ if (cgt) return cgt(clk, ts);
|
|
|
|
+ r = __syscall(SYS_clock_gettime, clk, ts);
|
|
|
|
+ if (!r) return r;
|
|
|
|
+ if (r == -ENOSYS) {
|
|
|
|
+ if (clk == CLOCK_REALTIME) {
|
|
|
|
+ __syscall(SYS_gettimeofday, clk, ts, 0);
|
|
|
|
+ ts->tv_nsec = (int)ts->tv_nsec * 1000;
|
|
|
|
+ return 0;
|
|
|
|
+ }
|
|
|
|
+ r = -EINVAL;
|
|
|
|
+ }
|
|
|
|
+ errno = -r;
|
|
|
|
+ return -1;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+weak_alias(__clock_gettime, clock_gettime);
|