mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-05 00:00:42 +01:00
16 lines
278 B
C++
16 lines
278 B
C++
#pragma once
|
|
|
|
struct psv_mutex_t
|
|
{
|
|
char name[32];
|
|
u32 attr;
|
|
s32 count;
|
|
|
|
public:
|
|
psv_mutex_t(const char* name, u32 attr, s32 count);
|
|
};
|
|
|
|
typedef psv_object_list_t<psv_mutex_t, SCE_KERNEL_THREADMGR_UID_CLASS_MUTEX> psv_mutex_list_t;
|
|
|
|
extern psv_mutex_list_t g_psv_mutex_list;
|