You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix Typo: On Windows, the .time function now uses GetSystemTimePreciseAsFileTime() [--> 1 microsecond resolution] instead of GetSystemTimeAsFileTime() [--> 15.625 millisecond resolution].
Clarification: On Windows The .monotonic functions now use the same clock as the .perf_counter functions, not vice versa.
The .perf_counter functions previously already used QueryPerformanceCounter() + QueryPerformanceFrequency() [--> 1 microsecond resolution], whereas the .monotonic functions previously used GetTickCount64() [--> 15.625 millisecond resolution].
Documentation
Fix Typo: On Windows, the .time function now uses GetSystemTimePreciseAsFileTime() [--> 1 microsecond resolution] instead of GetSystemTimeAsFileTime() [--> 15.625 millisecond resolution].
Clarification: On Windows The .monotonic functions now use the same clock as the .perf_counter functions, not vice versa.
The .perf_counter functions previously already used QueryPerformanceCounter() + QueryPerformanceFrequency() [--> 1 microsecond resolution], whereas the .monotonic functions previously used GetTickCount64() [--> 15.625 millisecond resolution].
Linked PRs
The text was updated successfully, but these errors were encountered: