summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_page_table.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-05-16core: Make variable shadowing a compile-time errorLioncash1-1/+1
Now that we have most of core free of shadowing, we can enable the warning as an error to catch anything that may be remaining and also eliminate this class of logic bug entirely.
2021-05-06hle: kernel: KPageTable: CanContain should not be constexpr.bunnei1-1/+1
2021-05-06hle: kernel: Improve MapSharedMemory and implement UnmapSharedMemory.bunnei1-1/+4
2021-05-06hle: kernel: Migrate KTransferMemory to KAutoObject.bunnei1-2/+2
2021-02-19hle: kernel: Migrate PageHeap/PageTable to KPageHeap/KPageTable.bunnei1-6/+4
2021-02-19hle: kernel: Migrate MemoryManager to KMemoryManager.bunnei1-3/+3
2021-02-19hle: kernel: Migrate PageLinkedList to KPageLinkedList.bunnei1-5/+6
2021-02-19hle: kernel: Migrate to KMemoryBlock, KMemoryBlockManager, and others.bunnei1-39/+42
2020-05-03kernel/memory: Remove unused includesLioncash1-2/+1
Prevents header churn and needing to recompile these files if these headers are ever changed in the future.
2020-04-23kernel: memory: Improve implementation of device shared memory. (#3707)bunnei1-0/+2
* kernel: memory: Improve implementation of device shared memory. * fixup! kernel: memory: Improve implementation of device shared memory. * fixup! kernel: memory: Improve implementation of device shared memory.
2020-04-17kernel: memory: page_table: Simplify GetPhysicalAddr impl.bunnei1-1/+3
2020-04-17kernel: memory: Add PageTable class, to manage process address space.bunnei1-0/+274