Home
last modified time | relevance | path

Searched refs:MmioBuddyMemPool (Results 1 – 2 of 2) sorted by relevance

/DragonOS-0.1.7/docs/kernel/memory_management/
Dmmio.md75 MmioBuddyMemPool
128 pub struct MmioBuddyMemPool {
156   DragonOS中,使用`MmioBuddyMemPool`结构体作为buddy(为表述方便,以下将伙伴算法简称为buddy)内存池的数据结构,其记录了内存池的起始地址(po…
166 **P.S 以下函数均为MmioBuddyMemPool的成员函数。系统中已经创建了一个MmioBuddyMemPool类型的全局引用`MMIO_POOL`,如要使用以下函数,请以`MMIO_POO…
/DragonOS-0.1.7/kernel/src/mm/
Dmmio_buddy.rs23 pub static ref MMIO_POOL: MmioBuddyMemPool = MmioBuddyMemPool::new();
35 pub struct MmioBuddyMemPool { struct
40 impl Default for MmioBuddyMemPool { implementation
42 MmioBuddyMemPool { in default()
49 impl MmioBuddyMemPool { implementation
51 return MmioBuddyMemPool { in new()