bpf::memory::Memory class

Contents

Low-level memory allocator

Public static functions

static auto Malloc(fsize size) -> void*
static void Free(void* addr) noexcept
static auto Realloc(void* addr, fsize newsize) -> void*

Function documentation

static void* bpf::memory::Memory::Malloc(fsize size)

Parameters
size number of bytes
Returns pointer to allocated memory
Exceptions
MemoryException in case allocation is impossible

Allocate memory. WARNING: Never mix allocators

static void bpf::memory::Memory::Free(void* addr) noexcept

Parameters
addr pointer to allocated memory

Free allocated memory. WARNING: Never mix allocators

static void* bpf::memory::Memory::Realloc(void* addr, fsize newsize)

Parameters
addr pointer to allocated memory
newsize new size to apply
Returns either addr pointer or pointer to a newly allocated memory
Exceptions
MemoryException in case re-allocation is impossible

Resize an already allocated memory. WARNING: Never mix allocators