Struct solana_sdk::entrypoint::BumpAllocator
source · pub struct BumpAllocator {
pub start: usize,
pub len: usize,
}
Expand description
The bump allocator used as the default rust heap when running programs.
Fields§
§start: usize
§len: usize
Trait Implementations§
source§impl GlobalAlloc for BumpAllocator
impl GlobalAlloc for BumpAllocator
Integer arithmetic in this global allocator implementation is safe when
operating on the prescribed HEAP_START_ADDRESS
and HEAP_LENGTH
. Any
other use may overflow and is thus unsupported and at one’s own risk.
source§unsafe fn alloc(&self, layout: Layout) -> *mut u8
unsafe fn alloc(&self, layout: Layout) -> *mut u8
Allocate memory as described by the given
layout
. Read more