rpcsx/rpcs3/Emu/perf_monitor.hpp

12 lines
166 B
C++
Raw Normal View History

2022-03-11 21:08:44 +01:00
#pragma once
#include "util/types.hpp"
struct perf_monitor
{
void operator()();
~perf_monitor();
static constexpr auto thread_name = "Performance Sensor"sv;
};