mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-03 08:08:39 -04:00
svc: refactor/rename MemoryInfo fields
This commit is contained in:
parent
d9159f81d2
commit
4866e80769
21 changed files with 138 additions and 138 deletions
|
@ -21,13 +21,13 @@ namespace ams::svc {
|
|||
namespace lp64 {
|
||||
|
||||
struct MemoryInfo {
|
||||
u64 addr;
|
||||
u64 base_address;
|
||||
u64 size;
|
||||
MemoryState state;
|
||||
MemoryAttribute attr;
|
||||
MemoryPermission perm;
|
||||
u32 ipc_refcount;
|
||||
u32 device_refcount;
|
||||
MemoryAttribute attribute;
|
||||
MemoryPermission permission;
|
||||
u32 ipc_count;
|
||||
u32 device_count;
|
||||
u32 padding;
|
||||
};
|
||||
|
||||
|
@ -43,13 +43,13 @@ namespace ams::svc {
|
|||
namespace ilp32 {
|
||||
|
||||
struct MemoryInfo {
|
||||
u64 addr;
|
||||
u64 base_address;
|
||||
u64 size;
|
||||
MemoryState state;
|
||||
MemoryAttribute attr;
|
||||
MemoryPermission perm;
|
||||
u32 ipc_refcount;
|
||||
u32 device_refcount;
|
||||
MemoryAttribute attribute;
|
||||
MemoryPermission permission;
|
||||
u32 ipc_count;
|
||||
u32 device_count;
|
||||
u32 padding;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue