add c skeleton
This commit is contained in:
19
kernel/memory/pageframealloc.cc
Normal file
19
kernel/memory/pageframealloc.cc
Normal 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){
|
||||
}
|
||||
Reference in New Issue
Block a user