1
0
Fork 0
forked from koniifer/ableos
ableos-framebuffer/ableos/src/allocator/aalloc.rs

19 lines
375 B
Rust

/*!
The allocator to be implemented by ableOS
*/
use alloc::alloc::{GlobalAlloc, Layout};
use core::ptr::null_mut;
pub struct AAloc;
unsafe impl GlobalAlloc for AAloc {
unsafe fn alloc(&self, _layout: Layout) -> *mut u8 {
null_mut()
}
unsafe fn dealloc(&self, _ptr: *mut u8, _layout: Layout) {
panic!("dealloc should be never called")
}
}