summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/memory/page_table.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* kernel/memory: Remove unused includesLioncash2020-05-031-1/+0
| | | | | Prevents header churn and needing to recompile these files if these headers are ever changed in the future.
* page_table: Remove unused capturesLioncash2020-04-231-2/+2
| | | | | | Any time the lambda function is called, the permission being used in the capture would be passed in as an argument to the lambda, so the capture is unnecessary.
* kernel: memory: Improve implementation of device shared memory. (#3707)bunnei2020-04-231-0/+44
| | | | | | | * 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.
* core: hle: Address various feedback & code cleanup.bunnei2020-04-171-178/+78
| | | | - Should be no functional changes.
* kernel: memory: page_table: Simplify GetPhysicalAddr impl.bunnei2020-04-171-4/+0
|
* core: system: Rename GetDeviceManager -> DeviceManager.bunnei2020-04-171-1/+1
| | | | - More consistent with other system components.
* kernel: memory: Add PageTable class, to manage process address space.bunnei2020-04-171-0/+1234