20 lines
323 B
C++
20 lines
323 B
C++
#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){
|
|
}
|