mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
NOTE: I included some changes of the forks of O1L and Dante38490 to my fork. However, a conflict appeared while merging their sources with the ones of DH. I had to resolve this conflict manually and push all the changes like a new commit, that's why there changes weren't recorded individually and (probably) won't appear at in the commits list. I am very sorry for this, I'll try to avoid this in the future. In order to preserve the authors of those commits, I write this list here: O1L: Dummy Modules (cellAudio, cellSaveData, and more)23ece01a0b784fc571b3Dante38490: Spotted and fixed an issue in git-version-gen.cmd44e8867125Regarding my changes: * New lv2 SysCalls implemented (and others improved) * SDATA unpacker implemented * Changed layout of sc_table
12 lines
No EOL
196 B
C
12 lines
No EOL
196 B
C
#pragma once
|
|
|
|
struct sys_rwlock_attribute_t
|
|
{
|
|
u32 attr_protocol; //sys_protocol_t
|
|
u32 attr_pshared; //sys_process_shared_t
|
|
u64 key; //sys_ipc_key_t
|
|
s32 flags;
|
|
u8 name[8];
|
|
};
|
|
|
|
#pragma pack() |