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