rewrite ipc to use vaddress instead of paddr

This commit is contained in:
2026-02-28 23:15:41 +01:00
parent 770e77769a
commit 11c01ab7f6
3 changed files with 46 additions and 41 deletions

View File

@@ -188,7 +188,7 @@ void* getFreeVirtSpace(pagetable_t* l4, uint8_t num_pages){
}
}
if(space_is_free){
//next_start_v = v+num_pages;
next_start_v = v+num_pages;
return (void*) ((uintptr_t) (v <<12));
}
}