memory: Add more debug messages for CoW related functions

This commit is contained in:
EnderIce2
2024-11-18 04:07:08 +02:00
parent 9f34bd0192
commit 3a68b28c13
2 changed files with 3 additions and 0 deletions

View File

@ -1023,6 +1023,7 @@ static void *linux_mmap(SysFrm *, void *addr, size_t length, int prot,
void *ret = vma->CreateCoWRegion(addr, length,
p_Read, p_Write, p_Exec,
m_Fixed, m_Shared);
debug("ret: %#lx", ret);
return (void *)ret;
}
#undef __FENNIX_KERNEL_SYSCALLS_LIST_H__