mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
14 lines
339 B
C++
14 lines
339 B
C++
#include "stdafx.h"
|
|
#include "Emu/Memory/Memory.h"
|
|
#include "Emu/ARMv7/PSVFuncList.h"
|
|
#include "Emu/ARMv7/PSVObjectList.h"
|
|
#include "Modules/sceLibKernel.h"
|
|
#include "Modules/psv_sema_object.h"
|
|
|
|
psv_object_list_t<psv_sema_t, SCE_KERNEL_THREADMGR_UID_CLASS_SEMA> g_psv_sema_list;
|
|
|
|
void clear_all_psv_objects()
|
|
{
|
|
g_psv_sema_list.clear();
|
|
}
|