From 767c85e6656b686a811a63b7b80a7ec994394eca Mon Sep 17 00:00:00 2001 From: Erin Date: Tue, 31 Oct 2017 22:07:54 -0500 Subject: [PATCH] add note extolling the extreme badness of the frame allocator --- src/arch/x86_64/memory/area_frame_allocator.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/arch/x86_64/memory/area_frame_allocator.rs b/src/arch/x86_64/memory/area_frame_allocator.rs index 1f73ac0..f894422 100644 --- a/src/arch/x86_64/memory/area_frame_allocator.rs +++ b/src/arch/x86_64/memory/area_frame_allocator.rs @@ -51,6 +51,8 @@ impl FrameAllocator for AreaFrameAllocator { } } + /// EXTREME BADNESS + /// TODO: fix this fn dealloc_frame(&mut self, frame: Frame) { unimplemented!(); }