diff options
| author | 2016-03-05 22:09:59 -0800 | |
|---|---|---|
| committer | 2016-03-05 22:09:59 -0800 | |
| commit | 6aa90e13f99ea032754733057f7c13f94fd10aa2 (patch) | |
| tree | 33a2235a50da38de52ace3b28ef4ae0a6dd28d97 /src/core/hle/kernel/process.h | |
| parent | Merge pull request #1455 from yuriks/ResultVal-union (diff) | |
| download | yuzu-6aa90e13f99ea032754733057f7c13f94fd10aa2.tar.gz yuzu-6aa90e13f99ea032754733057f7c13f94fd10aa2.tar.xz yuzu-6aa90e13f99ea032754733057f7c13f94fd10aa2.zip | |
Memory: Do correct Phys->Virt address translation for non-APP linheap
Diffstat (limited to 'src/core/hle/kernel/process.h')
| -rw-r--r-- | src/core/hle/kernel/process.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index 60e17f251..6d2ca96a2 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h | |||
| @@ -143,6 +143,7 @@ public: | |||
| 143 | /// Bitmask of the used TLS slots | 143 | /// Bitmask of the used TLS slots |
| 144 | std::bitset<300> used_tls_slots; | 144 | std::bitset<300> used_tls_slots; |
| 145 | 145 | ||
| 146 | VAddr GetLinearHeapAreaAddress() const; | ||
| 146 | VAddr GetLinearHeapBase() const; | 147 | VAddr GetLinearHeapBase() const; |
| 147 | VAddr GetLinearHeapLimit() const; | 148 | VAddr GetLinearHeapLimit() const; |
| 148 | 149 | ||