This repository has been archived on 2026-03-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
netbenixCMD/utils/sys_info.h
2020-06-03 09:05:07 +02:00

14 lines
No EOL
336 B
C

#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