diff options
| author | Matteo Gmür <matteo.gmuer1@ost.ch> | 2024-10-02 13:02:35 +0000 |
|---|---|---|
| committer | Matteo Gmür <matteo.gmuer1@ost.ch> | 2024-10-02 13:02:35 +0000 |
| commit | 32add45849744dc976c7af6ec24f985bbace47d3 (patch) | |
| tree | 0f4e31827bf81e7489f541e0e7ff8eb87df34d95 /arch/x86_64/src/memory | |
| parent | 4c60bad3150b07e973eb385613a90ebb8c94ecac (diff) | |
| download | teachos-32add45849744dc976c7af6ec24f985bbace47d3.tar.xz teachos-32add45849744dc976c7af6ec24f985bbace47d3.zip | |
Creating base frame allocation code
Diffstat (limited to 'arch/x86_64/src/memory')
| -rw-r--r-- | arch/x86_64/src/memory/frame_allocator.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/x86_64/src/memory/frame_allocator.cpp b/arch/x86_64/src/memory/frame_allocator.cpp new file mode 100644 index 0000000..425528a --- /dev/null +++ b/arch/x86_64/src/memory/frame_allocator.cpp @@ -0,0 +1,9 @@ +#include "arch/memory/frame_allocator.hpp" + +namespace teachos::arch::memory +{ + auto AreaFrameAllocator::allocate_frame() -> std::optional<Frame> {} + + auto AreaFrameAllocator::deallocate_frame(Frame frame) -> void {} + +} // namespace teachos::arch::memory |
