summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/vm_manager.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-09-21Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner1-1/+1
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot1-3/+1
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot1-16/+20
2016-05-26Memory: Added necessary headers and removed unnecessary headerMerryMage1-0/+1
2016-01-30Memory: Implement MMIOMerryMage1-3/+4
2015-08-16Kernel: Properly implement ControlMemory FREE and COMMITYuri Kunde Schlesner1-10/+81
2015-08-16VMManager: Introduce names for used ResultCodesYuri Kunde Schlesner1-6/+3
2015-08-16VMManager: Make LogLayout log level configurable as a parameterYuri Kunde Schlesner1-3/+13
2015-08-16VMManager: Change block offsets to size_tYuri Kunde Schlesner1-1/+1
2015-07-12Core: Properly configure address space when loading a binaryYuri Kunde Schlesner1-0/+14
The code now properly configures the process image to match the loaded binary segments (code, rodata, data) instead of just blindly allocating a large chunk of dummy memory.
2015-06-28Core: Cleanup core includes.Emmanuel Gil Peyrot1-0/+2
2015-05-27Kernel: Add VMManager to manage process address spacesYuri Kunde Schlesner1-0/+245
This enables more dynamic management of the process address space, compared to just directly configuring the page table for major areas. This will serve as the foundation upon which the rest of the Kernel memory management functions will be built.