PPU: Notify SPUs while waiting for its own state

This commit is contained in:
Elad 2024-11-30 16:46:50 +02:00
parent a4ea71d18f
commit b4505600c7
3 changed files with 25 additions and 0 deletions

View file

@ -2297,6 +2297,27 @@ void ppu_thread::cpu_on_stop()
}
}
void ppu_thread::cpu_wait(bs_t<cpu_flag> old)
{
// Meanwhile while waiting, notify SPU waiters
if (u32 addr = res_notify)
{
res_notify = 0;
if (res_notify_time == vm::reservation_notifier_count_index(addr).second)
{
vm::reservation_notifier_notify(addr);
}
}
if (old != state)
{
return;
}
state.wait(old);
}
void ppu_thread::exec_task()
{
if (g_cfg.core.ppu_decoder != ppu_decoder_type::_static)