mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 22:11:26 +12:00
_sys_lwmutex_lock: log new case of ESRCH
This commit is contained in:
parent
2aff36647a
commit
eb1de04ca8
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ error_code _sys_lwmutex_lock(ppu_thread& ppu, u32 lwmutex_id, u64 timeout)
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!mutex)
|
if (!mutex || ppu.gpr[3] == CELL_ESRCH)
|
||||||
{
|
{
|
||||||
return CELL_ESRCH;
|
return CELL_ESRCH;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue