Merge pull request #2412 from lioncash/system

kernel/vm_manager: Remove usages of global system accessors
This commit is contained in:
bunnei
2019-04-28 22:27:14 -04:00
committed by GitHub
3 changed files with 11 additions and 7 deletions

View File

@ -241,7 +241,8 @@ void Process::LoadModule(CodeSet module_, VAddr base_addr) {
}
Process::Process(Core::System& system)
: WaitObject{system.Kernel()}, address_arbiter{system}, mutex{system}, system{system} {}
: WaitObject{system.Kernel()}, vm_manager{system},
address_arbiter{system}, mutex{system}, system{system} {}
Process::~Process() = default;