added IPC syscalls

This commit is contained in:
user
2026-02-24 16:35:11 +01:00
parent 349155a556
commit 18d21a5f70
9 changed files with 171 additions and 3 deletions

View File

@@ -154,6 +154,8 @@ void PageFrameAllocator::free(PageFrame* frame){
//TODO ref counter etc...
}
void PageFrameAllocator::free(uintptr_t addr){
free(&PageFrames[addr>>12]);
}