common: remove "yuzu:" prefix from thread names
This commit is contained in:
parent
e23adcd481
commit
47fc168030
19 changed files with 23 additions and 23 deletions
|
@ -36,7 +36,7 @@ ServiceThread::Impl::Impl(KernelCore& kernel, std::size_t num_threads, const std
|
|||
: service_name{name} {
|
||||
for (std::size_t i = 0; i < num_threads; ++i) {
|
||||
threads.emplace_back([this, &kernel](std::stop_token stop_token) {
|
||||
Common::SetCurrentThreadName(std::string{"yuzu:HleService:" + service_name}.c_str());
|
||||
Common::SetCurrentThreadName(std::string{service_name}.c_str());
|
||||
|
||||
// Wait for first request before trying to acquire a render context
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue