发布时间:2014-09-08 21:53:39
在网上找了好长时间关于获取CPUID的代码,都不是完全版本,回去还得改,自己写好了,是借鉴dmidecode中的代码成完的,希望多多提意见,谢谢。types.h点击(此处)折叠或打开#ifndef TYPES_H#define TYPES_Htypedef unsigned char u8;.........【阅读全文】
发布时间:2014-09-08 21:52:21
#include unsigned int veax;unsigned int vebx;unsigned int vedx;unsigned int vecx;//执行CPUID指令void cpuid(unsigned int veax1){asm("cpuid" :"=a"(veax), "=b"(vebx), "=c"(vecx), "=d"(vedx) :"a"(veax));}//做移位操作,把寄存器中的值以“%d”形式.........【阅读全文】
发布时间:2014-09-08 21:52:13
#include <stdio.h>#include <sys/ioctl.h>#include <linux/hdreg.h>#include <sys/stat.h>#include <fcntl.h> static intgetdiskid (char *hardc){int fd;struct hd_driveid hid;fd = open ("/dev/sda", O_RDONLY);if (fd < 0){return -1;}if (ioctl (fd, HDIO_GET_IDENTITY, &hid) < 0){re.........【阅读全文】