rpcsx/rpcs3/Emu/perf_monitor.hpp

13 lines
194 B
C++
Raw Normal View History

2022-03-11 21:08:44 +01:00
#pragma once
2025-02-11 03:00:37 +01:00
#include <string_view>
using namespace std::literals;
2022-03-11 21:08:44 +01:00
struct perf_monitor
{
void operator()();
~perf_monitor();
static constexpr auto thread_name = "Performance Sensor"sv;
};