Merge pull request #2285 from lioncash/unused-struct

kernel/process: Remove unused AddressMapping struct
This commit is contained in:
bunnei 2019-03-26 11:17:03 -04:00 committed by GitHub
commit 47f2405ab1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,14 +35,6 @@ class Thread;
struct CodeSet;
struct AddressMapping {
// Address and size must be page-aligned
VAddr address;
u64 size;
bool read_only;
bool unk_flag;
};
enum class MemoryRegion : u16 {
APPLICATION = 1,
SYSTEM = 2,