summaryrefslogtreecommitdiff
path: root/src/core/memory.h
diff options
context:
space:
mode:
authorGravatar bunnei2017-09-29 14:58:42 -0400
committerGravatar GitHub2017-09-29 14:58:42 -0400
commitb07af7dda822898e9c8f231c5ddcd1741d93dbef (patch)
treed41c9221d6065b8cf9e6a2405565b675a9c83c51 /src/core/memory.h
parentMerge pull request #2907 from Subv/warnings3 (diff)
parentLoaders: Don't automatically set the current process every time we load an ap... (diff)
downloadyuzu-b07af7dda822898e9c8f231c5ddcd1741d93dbef.tar.gz
yuzu-b07af7dda822898e9c8f231c5ddcd1741d93dbef.tar.xz
yuzu-b07af7dda822898e9c8f231c5ddcd1741d93dbef.zip
Merge pull request #2961 from Subv/load_titles
Loaders: Don't automatically set the current process every time we load an application.
Diffstat (limited to 'src/core/memory.h')
-rw-r--r--src/core/memory.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/memory.h b/src/core/memory.h
index 1865bfea0..347c08c78 100644
--- a/src/core/memory.h
+++ b/src/core/memory.h
@@ -12,6 +12,10 @@
12#include "common/common_types.h" 12#include "common/common_types.h"
13#include "core/mmio.h" 13#include "core/mmio.h"
14 14
15namespace Kernel {
16class Process;
17}
18
15namespace Memory { 19namespace Memory {
16 20
17/** 21/**
@@ -185,7 +189,10 @@ enum : VAddr {
185void SetCurrentPageTable(PageTable* page_table); 189void SetCurrentPageTable(PageTable* page_table);
186PageTable* GetCurrentPageTable(); 190PageTable* GetCurrentPageTable();
187 191
192/// Determines if the given VAddr is valid for the specified process.
193bool IsValidVirtualAddress(const Kernel::Process& process, const VAddr vaddr);
188bool IsValidVirtualAddress(const VAddr addr); 194bool IsValidVirtualAddress(const VAddr addr);
195
189bool IsValidPhysicalAddress(const PAddr addr); 196bool IsValidPhysicalAddress(const PAddr addr);
190 197
191u8 Read8(VAddr addr); 198u8 Read8(VAddr addr);