use crate::{mm::heap::LinkedListAllocator, util::Locked}; #[global_allocator] pub static ALLOCATOR: Locked = Locked::new(LinkedListAllocator::new());