SQueue renamed and moved

This commit is contained in:
Nekotekina 2014-12-25 01:24:17 +03:00
parent 69388f032e
commit 7613d749ec
23 changed files with 311 additions and 254 deletions

View file

@ -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;
}