summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/vm_manager.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Memory: Added necessary headers and removed unnecessary headerMerryMage2016-05-261-0/+1
|
* Memory: Implement MMIOMerryMage2016-01-301-3/+4
|
* Kernel: Properly implement ControlMemory FREE and COMMITYuri Kunde Schlesner2015-08-161-10/+81
|
* VMManager: Introduce names for used ResultCodesYuri Kunde Schlesner2015-08-161-6/+3
|
* VMManager: Make LogLayout log level configurable as a parameterYuri Kunde Schlesner2015-08-161-3/+13
|
* VMManager: Change block offsets to size_tYuri Kunde Schlesner2015-08-161-1/+1
|
* Core: Properly configure address space when loading a binaryYuri Kunde Schlesner2015-07-121-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.
* Core: Cleanup core includes.Emmanuel Gil Peyrot2015-06-281-0/+2
|
* Kernel: Add VMManager to manage process address spacesYuri Kunde Schlesner2015-05-271-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.