mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-11 02:29:29 +00:00
lv2: Correct alignment of some attributes structs
This commit is contained in:
parent
f7c177d79e
commit
8b6383b489
8 changed files with 8 additions and 8 deletions
|
@ -13,7 +13,7 @@ struct sys_cond_attribute_t
|
||||||
|
|
||||||
union
|
union
|
||||||
{
|
{
|
||||||
u64 name_u64;
|
nse_t<u64, 1> name_u64;
|
||||||
char name[sizeof(u64)];
|
char name[sizeof(u64)];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -59,7 +59,7 @@ struct sys_event_queue_attribute_t
|
||||||
|
|
||||||
union
|
union
|
||||||
{
|
{
|
||||||
u64 name_u64;
|
nse_t<u64, 1> name_u64;
|
||||||
char name[sizeof(u64)];
|
char name[sizeof(u64)];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -26,7 +26,7 @@ struct sys_event_flag_attribute_t
|
||||||
|
|
||||||
union
|
union
|
||||||
{
|
{
|
||||||
u64 name_u64;
|
nse_t<u64, 1> name_u64;
|
||||||
char name[sizeof(u64)];
|
char name[sizeof(u64)];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -10,7 +10,7 @@ struct sys_lwcond_attribute_t
|
||||||
{
|
{
|
||||||
union
|
union
|
||||||
{
|
{
|
||||||
u64 name_u64;
|
nse_t<u64, 1> name_u64;
|
||||||
char name[sizeof(u64)];
|
char name[sizeof(u64)];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -11,7 +11,7 @@ struct sys_lwmutex_attribute_t
|
||||||
|
|
||||||
union
|
union
|
||||||
{
|
{
|
||||||
u64 name_u64;
|
nse_t<u64, 1> name_u64;
|
||||||
char name[sizeof(u64)];
|
char name[sizeof(u64)];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -16,7 +16,7 @@ struct sys_mutex_attribute_t
|
||||||
|
|
||||||
union
|
union
|
||||||
{
|
{
|
||||||
u64 name_u64;
|
nse_t<u64, 1> name_u64;
|
||||||
char name[sizeof(u64)];
|
char name[sizeof(u64)];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -14,7 +14,7 @@ struct sys_rwlock_attribute_t
|
||||||
|
|
||||||
union
|
union
|
||||||
{
|
{
|
||||||
u64 name_u64;
|
nse_t<u64, 1> name_u64;
|
||||||
char name[sizeof(u64)];
|
char name[sizeof(u64)];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -14,7 +14,7 @@ struct sys_semaphore_attribute_t
|
||||||
|
|
||||||
union
|
union
|
||||||
{
|
{
|
||||||
u64 name_u64;
|
nse_t<u64, 1> name_u64;
|
||||||
char name[sizeof(u64)];
|
char name[sizeof(u64)];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue