diff options
author | bunnei <bunneidev@gmail.com> | 2019-04-07 17:50:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-07 17:50:31 -0400 |
commit | 3c1ce290d0a337997cb2abf611f7679379593da6 (patch) | |
tree | 50cb112d2f00991aa817f9d4789e0f41c741d8cf /src/core/memory.h | |
parent | 6b18a1592f5e5ceacf6d801b2a3fe4432f3f194e (diff) | |
parent | abae7577d20d2bf963112547d222dd3a7f8230c7 (diff) |
Merge pull request #2361 from lioncash/pagetable
core/memory: Minor simplifications to page table management
Diffstat (limited to 'src/core/memory.h')
-rw-r--r-- | src/core/memory.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/memory.h b/src/core/memory.h index 9153e4954..6845f5fe1 100644 --- a/src/core/memory.h +++ b/src/core/memory.h @@ -40,9 +40,8 @@ enum : VAddr { KERNEL_REGION_END = KERNEL_REGION_VADDR + KERNEL_REGION_SIZE, }; -/// Currently active page table +/// Changes the currently active page table. void SetCurrentPageTable(Common::PageTable* page_table); -Common::PageTable* GetCurrentPageTable(); /// Determines if the given VAddr is valid for the specified process. bool IsValidVirtualAddress(const Kernel::Process& process, VAddr vaddr); |