mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-16 03:38:38 +12:00
Fix RSX Offloader thread exit (MTRSX fix)
Hangs on exit if MTRSX is enabled.
This commit is contained in:
parent
05bb6e1545
commit
f335d034fc
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ namespace rsx
|
||||||
thread_ctrl::set_thread_affinity_mask(thread_ctrl::get_affinity_mask(thread_class::rsx));
|
thread_ctrl::set_thread_affinity_mask(thread_ctrl::get_affinity_mask(thread_class::rsx));
|
||||||
}
|
}
|
||||||
|
|
||||||
while (thread_ctrl::state() != thread_state::finished)
|
while (thread_ctrl::state() != thread_state::aborting)
|
||||||
{
|
{
|
||||||
for (auto&& job : m_work_queue.pop_all())
|
for (auto&& job : m_work_queue.pop_all())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue