pub struct StaticDlmalloc<R>(/* private fields */);
Implementations§
Source§impl<R> StaticDlmalloc<R>
impl<R> StaticDlmalloc<R>
pub const fn new_with_raw_mutex(raw_mutex: R, bounds: StaticHeapBounds) -> Self
Source§impl<R: RawMutex> StaticDlmalloc<R>
impl<R: RawMutex> StaticDlmalloc<R>
pub const fn new(bounds: StaticHeapBounds) -> Self
Trait Implementations§
Source§impl<R: RawMutex> GlobalAlloc for StaticDlmalloc<R>
impl<R: RawMutex> GlobalAlloc for StaticDlmalloc<R>
Source§unsafe fn alloc(&self, layout: Layout) -> *mut u8
unsafe fn alloc(&self, layout: Layout) -> *mut u8
Allocates memory as described by the given
layout
. Read moreSource§unsafe fn alloc_zeroed(&self, layout: Layout) -> *mut u8
unsafe fn alloc_zeroed(&self, layout: Layout) -> *mut u8
Behaves like
alloc
, but also ensures that the contents
are set to zero before being returned. Read more