tracy/public/client/TracySysPower.hpp

44 lines
567 B
C++
Raw Normal View History

#ifndef __TRACYSYSPOWER_HPP__
#define __TRACYSYSPOWER_HPP__
#if defined __linux__
# define TRACY_HAS_SYSPOWER
#endif
#ifdef TRACY_HAS_SYSPOWER
2023-03-09 23:05:18 +00:00
#include <stdint.h>
#include <stdio.h>
#include "TracyFastVector.hpp"
namespace tracy
{
class SysPower
{
2023-03-09 23:05:18 +00:00
struct Domain
{
uint64_t value;
uint64_t overflow;
FILE* handle;
const char* name;
};
public:
SysPower();
~SysPower();
void Tick();
2023-03-09 23:05:18 +00:00
private:
void ScanDirectory( const char* path, int parent );
FastVector<Domain> m_domains;
};
}
#endif
#endif