mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-12 02:59:51 +00:00
sus_lwcond_signal_all: use protocol specified in lwmutex
Trying to fix a nearly impossible corner case.
This commit is contained in:
parent
c15b5f1eca
commit
5fda9a4efb
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ error_code _sys_lwcond_signal_all(ppu_thread& ppu, u32 lwcond_id, u32 lwmutex_id
|
||||||
|
|
||||||
u32 result = 0;
|
u32 result = 0;
|
||||||
|
|
||||||
for (const auto cpu : ::as_rvalue(std::move(cond.sq)))
|
while (const auto cpu = cond.schedule<ppu_thread>(cond.sq, cond.protocol))
|
||||||
{
|
{
|
||||||
cond.waiters--;
|
cond.waiters--;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue