mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 10:18:40 +12:00
13 lines
307 B
C++
13 lines
307 B
C++
#include "stdafx.h"
|
|
#include "Emu/Memory/Memory.h"
|
|
#include "Emu/ARMv7/PSVFuncList.h"
|
|
#include "Emu/ARMv7/PSVObjectList.h"
|
|
#include "sceLibKernel.h"
|
|
#include "psv_cond.h"
|
|
|
|
psv_cond_t::psv_cond_t(const char* name, u32 attr, s32 mutexId)
|
|
: attr(attr)
|
|
, mutexId(mutexId)
|
|
{
|
|
strcpy_trunc(this->name, name);
|
|
}
|