我有代码可以返回有关 Windows 下基于英特尔的系统上正在运行的 CPU 的信息。它使用CallNtPowerInformation
andGetPwrCapabilities
函数来做到这一点。返回的典型信息是最大 Mhz、当前 Mhz、最大空闲状态、当前空闲状态。
据推测,这是通过一条指令完成的,例如cpuid
.
我想要在 Linux 下运行的类似代码。任何想法如何做到这一点?
这是我拥有的 Windows 代码:
/** cpustat.h -- Header for cpustat.cpp.
* Copyright (c) 2004 Brad Fish (brad.fish@gmail.com).
*/
#if !defined(MAIN_H)
#define MAIN_H
#include <windows.h>
// missing Windows processor power information struct
typedef struct _PROCESSOR_POWER_INFORMATION {
ULONG Number;
ULONG MaxMhz;
ULONG CurrentMhz;
ULONG MhzLimit;
ULONG MaxIdleState;
ULONG CurrentIdleState;
} PROCESSOR_POWER_INFORMATION , *PPROCESSOR_POWER_INFORMATION;
int main (int argc, char *argv[]);
#endif // MAIN_H
#include "cpustat.h"
#include <cstdio>
#include <vector>
#include <iostream>
extern "C" {
#include <powrprof.h>
}
int main (int argc, char *argv[])
{
typedef std::vector<PROCESSOR_POWER_INFORMATION> PPIVector;
SYSTEM_INFO sys_info;
PPIVector ppis;
SYSTEM_POWER_CAPABILITIES spc;
// find out how many processors we have in the system
GetSystemInfo(&sys_info);
ppis.resize(sys_info.dwNumberOfProcessors);
// get CPU stats
if (CallNtPowerInformation(ProcessorInformation, NULL, 0, &ppis[0],
sizeof(PROCESSOR_POWER_INFORMATION) * ppis.size()) != ERROR_SUCCESS)
{
perror("main: ");
return -1;
}
// print out CPU stats
for (PPIVector::iterator it = ppis.begin(); it != ppis.end(); ++it)
{
std::cout << "stats for CPU " << it->Number << ':' << std::endl;
std::cout << " maximum MHz: " << it->MaxMhz << std::endl;
std::cout << " current MHz: " << it->CurrentMhz << std::endl;
std::cout << " MHz limit: " << it->MhzLimit << std::endl;
std::cout << " maximum idle state: " << it->MaxIdleState << std::endl;
std::cout << " current idle state: " << it->CurrentIdleState <<
std::endl;
}
// get system power settings
if (!GetPwrCapabilities(&spc))
{
perror("main: ");
return -2;
}
// print power settings
std::cout << "system power capabilities:" << std::endl;
std::cout << " processor throttle: " <<
(spc.ProcessorThrottle ? "enabled" : "disabled") << std::endl;
std::cout << " processor minimum throttle: " <<
static_cast<int>(spc.ProcessorMinThrottle) << '%' << std::endl;
std::cout << " processor maximum throttle: " <<
static_cast<int>(spc.ProcessorMaxThrottle) << '%' << std::endl;
}