mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 10:48:36 +12:00
vm: Fix vm::passive_lock regression (#8175)
possible broken signaling in rare occusions.
This commit is contained in:
parent
5c4c8f4539
commit
93122196d9
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ namespace vm
|
|||
|
||||
if (cpu.state & cpu_flag::memory)
|
||||
{
|
||||
cpu.state -= cpu_flag::memory;
|
||||
cpu.state -= cpu_flag::memory + cpu_flag::wait;
|
||||
}
|
||||
|
||||
if (g_mutex.is_lockable()) [[likely]]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue