svc: Add additional fields to MemoryInfo struct.

This commit is contained in:
bunnei 2018-01-18 23:37:54 -05:00
parent 952dba9c2b
commit d80991977a
1 changed files with 4 additions and 0 deletions

View File

@ -14,7 +14,11 @@ struct MemoryInfo {
u32 type;
u32 attributes;
u32 permission;
u32 device_refcount;
u32 ipc_refcount;
INSERT_PADDING_WORDS(1);
};
static_assert(sizeof(MemoryInfo) == 0x28, "MemoryInfo has incorrect size.");
struct PageInfo {
u64 flags;