On Tue, May 14, 2019 at 08:31:29PM +0200, Alexandre Julliard wrote:
If the extra call to ntdll is really that expensive, you could probably forward to it instead.
Ah, nice. I've sent in a series that does that.
For GetTickCount64() I could do the same thing, but it would mean changing NtGetTickCount() to return a ULONGLONG. This should be fine as callers will just ignore the upper 32-bits (and hopefully there's nothing out there that relies on the wrapping). Is that ok?
I don't care too much about the changes I made to QueryPerformanceCounter(), that's a higher accuracy timer so can afford to be slower.
Huw.