summaryrefslogtreecommitdiff
path: root/source/kit_test
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2023-09-06 03:31:15 +0200
committerMitya Selivanov <automainint@guattari.tech>2023-09-06 03:31:15 +0200
commit50257aaab2fe845e515058fb42e1aaa7f2e6fae8 (patch)
treed2b66be29f9dd244829bb1978f01021d324df547 /source/kit_test
parent684be371508fd505ad02c4a387cd69ce12152931 (diff)
downloadkit-50257aaab2fe845e515058fb42e1aaa7f2e6fae8.zip
test
Diffstat (limited to 'source/kit_test')
-rw-r--r--source/kit_test/shared.inl.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/source/kit_test/shared.inl.h b/source/kit_test/shared.inl.h
index 34ccb07..b96897c 100644
--- a/source/kit_test/shared.inl.h
+++ b/source/kit_test/shared.inl.h
@@ -22,7 +22,22 @@
# endif
# include <Windows.h>
-static int timespec_get(struct timespec *ts, int base) { }
+static int timespec_get(struct timespec *ts, int base) {
+ if (ts == NULL || base != TIME_UTC)
+ return 0;
+ FILETIME ft;
+ ULARGE_INTEGER date;
+ LONGLONG ticks;
+
+ GetSystemTimeAsFileTime(&ft);
+ date.HighPart = ft.dwHighDateTime;
+ date.LowPart = ft.dwLowDateTime;
+ ticks = (LONGLONG) (date.QuadPart -
+ _TIMESPEC_IMPL_UNIX_EPOCH_IN_TICKS);
+ ts->tv_sec = ticks / _TIMESPEC_IMPL_TICKS_PER_SECONDS;
+ ts->tv_nsec = (ticks % _TIMESPEC_IMPL_TICKS_PER_SECONDS) * 100;
+ return base;
+}
# endif
#endif // kit/time.h