Comienzo del monitor de la CPU

Signed-off-by: somebody_master <somebody_master@somebodyserver.mooo.com>
This commit is contained in:
2021-05-06 23:41:53 +02:00
parent 188eab4896
commit d3b551eda2
4 changed files with 31 additions and 0 deletions

18
include/cpu_mon.hpp Normal file
View File

@ -0,0 +1,18 @@
#include "ui.hpp"
#include <string>
#ifdef _WIN32
#include <Windows.h>
#else
#include <unistd.h>
#endif
#ifndef CPU_MON_HPP_
#define CPU_MON_HPP_
class CpuMon {
private:
int8_t num_hilos;
public:
void iniciarCPU_MON();
};
#endif // CPU_MON_HPP_