()
| 88 | } |
| 89 | |
| 90 | pub fn init_frame_allocator() { |
| 91 | extern "C" { |
| 92 | fn ekernel(); |
| 93 | } |
| 94 | FRAME_ALLOCATOR.exclusive_access().init( |
| 95 | PhysAddr::from(ekernel as usize).ceil(), |
| 96 | PhysAddr::from(MEMORY_END).floor(), |
| 97 | ); |
| 98 | } |
| 99 | |
| 100 | pub fn frame_alloc() -> Option<FrameTracker> { |
| 101 | FRAME_ALLOCATOR |
no test coverage detected