mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 16:01:42 +12:00
SQueue renamed and moved
This commit is contained in:
parent
69388f032e
commit
7613d749ec
23 changed files with 311 additions and 254 deletions
|
@ -4,7 +4,6 @@
|
|||
#include "Emu/Memory/Memory.h"
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/Memory/atomic_type.h"
|
||||
#include "Utilities/SQueue.h"
|
||||
|
||||
#include "Emu/IdManager.h"
|
||||
#include "Emu/CPU/CPUThreadManager.h"
|
||||
|
@ -731,7 +730,7 @@ void SPUThread::WriteChannel(u32 ch, const u128& r)
|
|||
ef->flags |= (u64)1 << flag;
|
||||
if (u32 target = ef->check())
|
||||
{
|
||||
ef->signal.Push(target, nullptr);
|
||||
ef->signal.push(target);
|
||||
}
|
||||
SPU.In_MBox.PushUncond(CELL_OK);
|
||||
return;
|
||||
|
@ -771,7 +770,7 @@ void SPUThread::WriteChannel(u32 ch, const u128& r)
|
|||
ef->flags |= (u64)1 << flag;
|
||||
if (u32 target = ef->check())
|
||||
{
|
||||
ef->signal.Push(target, nullptr);
|
||||
ef->signal.push(target);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue