mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-04 03:49:17 +00:00
memory: Add more debug messages for CoW related functions
This commit is contained in:
@ -168,7 +168,9 @@ namespace Memory
|
||||
return (void *)-EPERM;
|
||||
}
|
||||
|
||||
debug("unmapping %#lx-%#lx", Address, (uintptr_t)Address + Length);
|
||||
vmm.Unmap(Address, Length);
|
||||
debug("mapping cow at %#lx-%#lx", Address, (uintptr_t)Address + Length);
|
||||
vmm.Map(Address, nullptr, Length, PTFlag::CoW);
|
||||
debug("CoW region created at range %#lx-%#lx for pt %#lx",
|
||||
Address, (uintptr_t)Address + Length, this->Table);
|
||||
|
Reference in New Issue
Block a user