use crate::mm::{allocator::bump::BumpAllocator, MemoryManagementArch, PhysMemoryArea}; impl BumpAllocator { pub unsafe fn arch_remain_areas(_ret_areas: &mut [PhysMemoryArea], res_count: usize) -> usize { // todo: riscv64 return res_count; } }