16 Nov
2023
16 Nov
'23
12:44 p.m.
Rémi Bernon (@rbernon) commented about programs/wineboot/wineboot.c:
+ } + while (error > 500 && --retries); + + if (!retries) WARN( "TSC frequency calibration failed, unstable TSC?\n" ); + else + { + freq = (freq0 + freq1) / 2; + TRACE( "TSC frequency calibration complete, found %I64u Hz\n", freq ); + } + + return freq; +} + +static BOOL is_tsc_trusted_by_the_kernel(void) +{ + char buf[4] = {};
char buf[4] = {0};
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/4409#note_52516