summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--win32/win32.c19
1 files changed, 17 insertions, 2 deletions
diff --git a/win32/win32.c b/win32/win32.c
index 2f0df85214..8f78b541dd 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -4576,13 +4576,28 @@ filetime_to_timeval(const FILETIME* ft, struct timeval *tv)
return tv->tv_sec > 0 ? 0 : -1;
}
+static void get_systemtime(FILETIME *ft)
+{
+ typedef void (WINAPI *get_time_func)(FILETIME *ft);
+ static get_time_func func = (get_time_func)-1;
+
+ if (func == (get_time_func)-1) {
+ /* GetSystemTimePreciseAsFileTime is available since Windows 8 and Windows Server 2012. */
+ func = (get_time_func)get_proc_address("kernel32", "GetSystemTimePreciseAsFileTime", NULL);
+ if (func == NULL) {
+ func = GetSystemTimeAsFileTime;
+ }
+ }
+ func(ft);
+}
+
/* License: Ruby's */
int __cdecl
gettimeofday(struct timeval *tv, struct timezone *tz)
{
FILETIME ft;
- GetSystemTimeAsFileTime(&ft);
+ get_systemtime(&ft);
filetime_to_timeval(&ft, tv);
return 0;
@@ -7314,7 +7329,7 @@ wutime(const WCHAR *path, const struct utimbuf *times)
}
}
else {
- GetSystemTimeAsFileTime(&atime);
+ get_systemtime(&atime);
mtime = atime;
}