| 120 | } |
| 121 | |
| 122 | pub trait FrameAllocator { |
| 123 | fn allocate_frame(&mut self) -> Option<Frame>; |
| 124 | fn deallocate_frame(&mut self, frame: Frame); |
| 125 | } |
| 126 | |
| 127 | pub struct MemoryController { |
| 128 | pub active_table: paging::ActivePageTable, |
nothing calls this directly
no outgoing calls
no test coverage detected