Skip to content

Commit

Permalink
sys_cond_signal_all: Use SYS_SYNC_PRIORITY protocol to signal threads
Browse files Browse the repository at this point in the history
  • Loading branch information
elad335 authored and Nekotekina committed May 3, 2020
1 parent 72bef8d commit b84b8f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpcs3/Emu/Cell/lv2/sys_cond.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ error_code sys_cond_signal_all(ppu_thread& ppu, u32 cond_id)
cpu_thread* result = nullptr;
cond.waiters -= ::size32(cond.sq);

while (const auto cpu = cond.schedule<ppu_thread>(cond.sq, cond.mutex->protocol))
while (const auto cpu = cond.schedule<ppu_thread>(cond.sq, SYS_SYNC_PRIORITY))
{
if (cond.mutex->try_own(*cpu, cpu->id))
{
Expand Down

0 comments on commit b84b8f4

Please sign in to comment.