12 lines
225 B
C++
12 lines
225 B
C++
#include <cstdint>
|
|
|
|
#include "../memory/pageframe.h"
|
|
|
|
namespace PageFrameAllocator {
|
|
void init ();
|
|
void stats ();
|
|
PageFrame* alloc(bool kernel);
|
|
void free (PageFrame *frame);
|
|
void free (uintptr_t addr);
|
|
}
|