Expand description
内存管理模块
本模块为内核提供与体系结构无关的内存管理抽象和实现。
§模块组成
address:地址和页号抽象。frame_allocator:物理帧分配。global_allocator:全局堆分配器。memory_space:内存空间管理。page_table:页表抽象和实现(与架构无关)。
Re-exports§
pub use frame_allocator::init_frame_allocator;pub use global_allocator::init_heap;
Modules§
- address
- 地址模块
- frame_
allocator - 帧分配器模块
- global_
allocator - 全局分配器模块
- memory_
space - 内存空间模块
- page_
table - 页表模块