rpcsx/rpcs3/Emu/perf_monitor.hpp
DH 62ad27d1e2 split rpcs3 and hle libraries
merge rpcs3 utilities
2025-04-08 19:46:57 +03:00

13 lines
194 B
C++

#pragma once
#include <string_view>
using namespace std::literals;
struct perf_monitor
{
void operator()();
~perf_monitor();
static constexpr auto thread_name = "Performance Sensor"sv;
};