mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 19:28:43 +12:00
11 lines
166 B
C++
11 lines
166 B
C++
#pragma once
|
|
|
|
#include "util/types.hpp"
|
|
|
|
struct perf_monitor
|
|
{
|
|
void operator()();
|
|
~perf_monitor();
|
|
|
|
static constexpr auto thread_name = "Performance Sensor"sv;
|
|
};
|