2015-01-25 23:38:50 +01:00
|
|
|
#include "stdafx.h"
|
2015-01-26 13:55:26 +01:00
|
|
|
#include "Emu/Memory/Memory.h"
|
|
|
|
|
#include "Emu/ARMv7/PSVFuncList.h"
|
|
|
|
|
#include "Emu/ARMv7/PSVObjectList.h"
|
|
|
|
|
#include "Modules/sceLibKernel.h"
|
2015-01-27 01:19:51 +01:00
|
|
|
#include "Modules/psv_sema.h"
|
|
|
|
|
#include "Modules/psv_event_flag.h"
|
2015-01-25 23:38:50 +01:00
|
|
|
|
2015-01-26 13:55:26 +01:00
|
|
|
psv_object_list_t<psv_sema_t, SCE_KERNEL_THREADMGR_UID_CLASS_SEMA> g_psv_sema_list;
|
2015-01-27 01:19:51 +01:00
|
|
|
psv_object_list_t<psv_event_flag_t, SCE_KERNEL_THREADMGR_UID_CLASS_EVENT_FLAG> g_psv_ef_list;
|
2015-01-26 13:55:26 +01:00
|
|
|
|
|
|
|
|
void clear_all_psv_objects()
|
|
|
|
|
{
|
|
|
|
|
g_psv_sema_list.clear();
|
2015-01-27 01:19:51 +01:00
|
|
|
g_psv_ef_list.clear();
|
2015-01-26 13:55:26 +01:00
|
|
|
}
|