diff options
| author | 2015-05-08 18:12:25 -0300 | |
|---|---|---|
| committer | 2015-05-08 22:12:10 -0300 | |
| commit | 3cb19c95895ab151d64682e5cbe64e938f995f46 (patch) | |
| tree | a3d14fcd598c7d55d2e5ef6d746613df916799ec /src/core/hle/kernel/process.h | |
| parent | Process: Add more documentation to the class members (diff) | |
| download | yuzu-3cb19c95895ab151d64682e5cbe64e938f995f46.tar.gz yuzu-3cb19c95895ab151d64682e5cbe64e938f995f46.tar.xz yuzu-3cb19c95895ab151d64682e5cbe64e938f995f46.zip | |
Process: Rename StaticAddressMapping => AddressMapping
Diffstat (limited to 'src/core/hle/kernel/process.h')
| -rw-r--r-- | src/core/hle/kernel/process.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index 260db8a63..88ed9a5a5 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | 16 | ||
| 17 | namespace Kernel { | 17 | namespace Kernel { |
| 18 | 18 | ||
| 19 | struct StaticAddressMapping { | 19 | struct AddressMapping { |
| 20 | // Address and size must be page-aligned | 20 | // Address and size must be page-aligned |
| 21 | VAddr address; | 21 | VAddr address; |
| 22 | u32 size; | 22 | u32 size; |
| @@ -66,7 +66,7 @@ public: | |||
| 66 | unsigned int handle_table_size = 0x200; | 66 | unsigned int handle_table_size = 0x200; |
| 67 | /// Special memory ranges mapped into this processes address space. This is used to give | 67 | /// Special memory ranges mapped into this processes address space. This is used to give |
| 68 | /// processes access to specific I/O regions and device memory. | 68 | /// processes access to specific I/O regions and device memory. |
| 69 | boost::container::static_vector<StaticAddressMapping, 8> static_address_mappings; | 69 | boost::container::static_vector<AddressMapping, 8> address_mappings; |
| 70 | ProcessFlags flags; | 70 | ProcessFlags flags; |
| 71 | 71 | ||
| 72 | /** | 72 | /** |