Fix RSX Offloader thread name

This commit is contained in:
Nekotekina 2020-02-26 21:56:58 +03:00
parent a0d2bc9769
commit 5094ab8283

View File

@ -81,12 +81,14 @@ namespace rsx
m_processed_count.notify_all();
}
static constexpr auto name = "RSX Offloader"sv;
static constexpr auto thread_name = "RSX Offloader"sv;
};
using dma_thread = named_thread<dma_manager::offload_thread>;
static_assert(std::is_default_constructible_v<dma_thread>);
// initialization
void dma_manager::init()
{