forked from koniifer/ableos
15 lines
325 B
Rust
15 lines
325 B
Rust
use alloc::alloc::{GlobalAlloc, Layout};
|
|
use core::ptr::null_mut;
|
|
|
|
pub struct Dummy;
|
|
|
|
unsafe impl GlobalAlloc for Dummy {
|
|
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")
|
|
}
|
|
}
|