ntdll: Use proper CPU speed detection on FreeBSD.
Reported by Hardy Schumacher.
This commit is contained in:
parent
0239d21244
commit
78f82fa063
|
@ -1178,7 +1178,7 @@ void fill_cpu_info(void)
|
|||
NtCurrentTeb()->Peb->NumberOfProcessors = num;
|
||||
|
||||
len = sizeof(num);
|
||||
if (!sysctlbyname("dev.cpu.0.freq", &num, &len, NULL, 0))
|
||||
if (!sysctlbyname("hw.clockrate", &num, &len, NULL, 0))
|
||||
cpuHz = num * 1000 * 1000;
|
||||
}
|
||||
#elif defined(__sun)
|
||||
|
|
Loading…
Reference in New Issue