process: Add method to mirror a memory region.

This commit is contained in:
bunnei 2017-12-28 21:35:49 -05:00
parent 7618b5237d
commit 3421e1617e
2 changed files with 27 additions and 0 deletions

View file

@ -177,6 +177,8 @@ public:
ResultVal<VAddr> LinearAllocate(VAddr target, u32 size, VMAPermission perms);
ResultCode LinearFree(VAddr target, u32 size);
ResultCode MirrorMemory(VAddr dst_addr, VAddr src_addr, u64 size);
private:
Process();
~Process() override;