Function rawAlloc [src]

This function is not intended to be called except from within the implementation of an Allocator.

Prototype

pub inline fn rawAlloc(a: Allocator, len: usize, alignment: Alignment, ret_addr: usize) ?[*]u8

Parameters

a: Allocatorlen: usizealignment: Alignmentret_addr: usize

Source

pub inline fn rawAlloc(a: Allocator, len: usize, alignment: Alignment, ret_addr: usize) ?[*]u8 { return a.vtable.alloc(a.ptr, len, alignment, ret_addr); }