Renamed 'os_info' to 'sys_info'
This commit is contained in:
parent
e9b8368830
commit
acf771ed1d
7 changed files with 17 additions and 17 deletions
14
utils/sys_info.h
Normal file
14
utils/sys_info.h
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#ifndef _SYS_INFO_H_
|
||||
#define _SYS_INFO_H_
|
||||
|
||||
static inline void native_cpuid(unsigned int *eax, unsigned int *ebx, unsigned int *ecx, unsigned int *edx);
|
||||
unsigned int getCPUStepping();
|
||||
unsigned int getCPUFamily();
|
||||
double getCPUClockSpeed();
|
||||
char* getCPUType();
|
||||
char* getOS();
|
||||
char* getArch();
|
||||
void print_Specs();
|
||||
void log_Specs();
|
||||
|
||||
#endif
|
||||
Reference in a new issue