pub struct Kmalloc;
Expand description
The contiguous kernel allocator.
Kmalloc
is typically used for physically contiguous allocations up to page size, but also
supports larger allocations up to bindings::KMALLOC_MAX_SIZE
, which is hardware specific.
For more details see self.
Trait Implementations§
Source§impl Allocator for Kmalloc
impl Allocator for Kmalloc
Source§unsafe fn realloc(
ptr: Option<NonNull<u8>>,
layout: Layout,
old_layout: Layout,
flags: Flags,
) -> Result<NonNull<[u8]>, AllocError>
unsafe fn realloc( ptr: Option<NonNull<u8>>, layout: Layout, old_layout: Layout, flags: Flags, ) -> Result<NonNull<[u8]>, AllocError>
Re-allocate an existing memory allocation to satisfy the requested
layout
. Read moreAuto Trait Implementations§
impl Freeze for Kmalloc
impl RefUnwindSafe for Kmalloc
impl Send for Kmalloc
impl Sync for Kmalloc
impl Unpin for Kmalloc
impl UnwindSafe for Kmalloc
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more