mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
16 lines
No EOL
165 B
C
16 lines
No EOL
165 B
C
#pragma once
|
|
|
|
struct sys_lwcond_attribute_t
|
|
{
|
|
union
|
|
{
|
|
char name[8];
|
|
u64 name_u64;
|
|
};
|
|
};
|
|
|
|
struct sys_lwcond_t
|
|
{
|
|
be_t<u32> lwmutex;
|
|
be_t<u32> lwcond_queue;
|
|
}; |