diff --git a/src/memory/FrameAllocator.cc b/src/memory/FrameAllocator.cc new file mode 100644 index 0000000..5452d6c --- /dev/null +++ b/src/memory/FrameAllocator.cc @@ -0,0 +1,15 @@ +/* FrameAllocator.hh + * vim: set tw=80: + * Eryn Wells + */ +/** + * An object to tracks and allocate physical page frames. + */ + +#include "FrameAllocator.hh" + +namespace kernel { + + + +} /* namespace kernel */ diff --git a/src/memory/FrameAllocator.hh b/src/memory/FrameAllocator.hh new file mode 100644 index 0000000..f0ec61d --- /dev/null +++ b/src/memory/FrameAllocator.hh @@ -0,0 +1,21 @@ +/* FrameAllocator.hh + * vim: set tw=80: + * Eryn Wells + */ +/** + * An object to tracks and allocate physical page frames. + */ + +#ifndef __MEMORY_FRAMEALLOCATOR_HH__ +#define __MEMORY_FRAMEALLOCATOR_HH__ + +namespace kernel { + +struct FrameAllocator +{ +}; + +} /* namespace */ + +#endif /* __MEMORY_FRAMEALLOCATOR_HH__ */ +