Home
last modified time | relevance | path

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

/DragonOS-0.1.8/kernel/src/libs/
Dalign.rs6 use crate::{arch::MMArch, mm::MemoryManagementArch, syscall::SystemError, KERNEL_ALLOCATOR};
51 let ptr = unsafe { KERNEL_ALLOCATOR.alloc_zeroed(Self::LAYOUT) }; in new_zeroed()
81 KERNEL_ALLOCATOR.dealloc(self.inner.as_ptr().cast(), Self::LAYOUT); in drop()
/DragonOS-0.1.8/kernel/src/
Dlib.rs68 pub static KERNEL_ALLOCATOR: KernelAllocator = KernelAllocator; variable