mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-05-07 13:37:46 +00:00
Fix Disk Usage thread
This commit is contained in:
parent
d53a6a87f6
commit
7d41bbdd2b
3 changed files with 10 additions and 7 deletions
|
|
@ -2883,6 +2883,13 @@ void thread_base::exec()
|
|||
}
|
||||
}
|
||||
|
||||
void thread_ctrl::set_name(std::string name)
|
||||
{
|
||||
ensure(g_tls_this_thread);
|
||||
g_tls_this_thread->m_tname.store(make_single<std::string>(name));
|
||||
g_tls_this_thread->set_name(std::move(name));
|
||||
}
|
||||
|
||||
[[noreturn]] void thread_ctrl::emergency_exit(std::string_view reason)
|
||||
{
|
||||
// Print stacktrace
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue