4 Feb
2025
4 Feb
'25
6:43 p.m.
Brendan Shanks (@bshanks) commented about dlls/ntdll/unix/sync.c:
*/ NTSTATUS WINAPI NtQuerySystemTime( LARGE_INTEGER *time ) { -#ifdef HAVE_CLOCK_GETTIME Wouldn't it be essentially the same to call `gettimeofday()` instead of `__commpage_gettimeofday()`? This line could change to `#if defined(HAVE_CLOCK_GETTIME) && !defined(__APPLE__)`.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/7256#note_93603