add c skeleton

This commit is contained in:
2026-01-09 20:56:11 +01:00
parent 15c861c81d
commit 3e91c055db
3 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#include "../memory/pageframealloc.h"
#include <cstdint>
#include "pageframe.h"
void PageFrameAllocator::init(){
}
void PageFrameAllocator::stats(){
}
PageFrame* PageFrameAllocator::alloc(bool kernel){
return 0;
}
void PageFrameAllocator::free(PageFrame* frame){
}
void PageFrameAllocator::free(uintptr_t addr){
}