Browse Source

svc: Add additional fields to MemoryInfo struct.

pull/15/merge
bunnei 8 years ago
parent
commit
d80991977a
  1. 4
      src/core/hle/kernel/svc.h

4
src/core/hle/kernel/svc.h

@ -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;

Loading…
Cancel
Save