summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_page_table.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fix formattingitsmeft242021-12-061-4/+1
|
* kernel: svc: Implement Map/UnmapProcessMemory and Create/ControlCodeMemoryitsmeft242021-12-051-1/+123
| | | | Used by Skyline modding framework
* kernel: KPageTable: Rename SetCodeMemoryPermission to SetProcessMemoryPermissionMorph2021-11-211-2/+2
|
* general: Remove MakeResult helpersMorph2021-11-021-2/+2
| | | | This is made obsolete by the presence of implicit constructors.
* KPageTable: Perform ranged invalidation when unmapping code memoryMorph2021-10-131-0/+2
| | | | Co-Authored-By: Fernando S. <1731197+FernandoS27@users.noreply.github.com>
* common: Replace common_sizes into user-literalsWunkolo2021-06-241-1/+4
| | | | | | | | | | | | | Removes common_sizes.h in favor of having `_KiB`, `_MiB`, `_GiB`, etc user-literals within literals.h. To keep the global namespace clean, users will have to use: ``` using namespace Common::Literals; ``` to access these literals.
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-30/+30
| | | | Transition to PascalCase for result names.
* core: Make variable shadowing a compile-time errorLioncash2021-05-161-5/+5
| | | | | | 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.
* hle: kernel: KPageTable: CanContain should not be constexpr.bunnei2021-05-061-1/+1
|
* hle: kernel: Improve MapSharedMemory and implement UnmapSharedMemory.bunnei2021-05-061-0/+39
|
* hle: kernel: Rename Process to KProcess.bunnei2021-05-061-1/+1
|
* hle: kernel: svc_results: Update naming..bunnei2021-05-061-3/+3
|
* hle: kernel: Migrate PageHeap/PageTable to KPageHeap/KPageTable.bunnei2021-02-191-0/+1190