首页 > 代码库 > 获取CPU频率
获取CPU频率
#include <stdio.h> #include <string.h> float get_cpu_clock_speed() { FILE *fp; char buffer[1024]; size_t bytes_read; char *match; float clock_speed; fp=fopen("/proc/cpuinfo","r"); bytes_read=fread(buffer,1,sizeof(buffer),fp); if(bytes_read==0 || bytes_read==sizeof(buffer)) return 0; buffer[bytes_read]=‘\0‘; match=strstr(buffer,"cpu MHz"); if(match == NULL) return 0; sscanf(match,"cpu MHz :%f",&clock_speed); #if 0 printf("buffer:%s, match:%s\n",buffer,match);#endif return clock_speed; } int main() { printf("CPU clock speed:%4.0f MHz\n",get_cpu_clock_speed()); return 0; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。