Browse Source
Merge pull request #2285 from lioncash/unused-struct
kernel/process: Remove unused AddressMapping struct
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
8 deletions
-
src/core/hle/kernel/process.h
|
|
|
@ -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, |
|
|
|
|