mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 22:47:03 +00:00
Fixed thread issues
Fixed args passing Fixed thread stopping/pausing (temporarily) Fixed problems with SC_Condition and SC_Mutex (partially)
This commit is contained in:
parent
a0c8e116df
commit
311486ed79
10 changed files with 60 additions and 19 deletions
|
|
@ -16,6 +16,7 @@ PPCThread* GetCurrentPPCThread()
|
|||
|
||||
PPCThread::PPCThread(CPUThreadType type) : CPUThread(type)
|
||||
{
|
||||
memset(m_args, 0, sizeof(m_args));
|
||||
}
|
||||
|
||||
PPCThread::~PPCThread()
|
||||
|
|
@ -24,7 +25,6 @@ PPCThread::~PPCThread()
|
|||
|
||||
void PPCThread::DoReset()
|
||||
{
|
||||
memset(m_args, 0, sizeof(u64) * 4);
|
||||
}
|
||||
|
||||
void PPCThread::InitStack()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue