Sane C++ Libraries
C++ Platform Abstraction Libraries
SC::Memory Struct Reference

Centralized functions to allocate, reallocate and deallocate memory. More...

#include <Memory.h>

Static Public Member Functions

static void * allocate (size_t numBytes, size_t alignment)
 Allocates numBytes bytes of memory. More...
 
static void * reallocate (void *memory, size_t numBytes)
 Change size of already allocated memory block. More...
 
static void release (void *memory)
 Free memory allocated by Memory::allocate and / or reallocated by Memory::reallocate. More...
 

Detailed Description

Centralized functions to allocate, reallocate and deallocate memory.

Member Function Documentation

◆ allocate()

static void * SC::Memory::allocate ( size_t  numBytes,
size_t  alignment 
)
static

Allocates numBytes bytes of memory.

Parameters
numBytesNumber of bytes to allocate
alignmentAlignment of the returned memory
Returns
Raw pointer to allocated memory, to be freed with Memory::release

◆ reallocate()

static void * SC::Memory::reallocate ( void *  memory,
size_t  numBytes 
)
static

Change size of already allocated memory block.

Existing contents of input buffer will be copied over.

Parameters
memorypointer to memory previously allocated by Memory::allocate or Memory::Reallocate
numBytesnew size of the reallocated block
Returns
A new pointer of memory with size numBytes, to be freed with Memory::release

◆ release()

static void SC::Memory::release ( void *  memory)
static

Free memory allocated by Memory::allocate and / or reallocated by Memory::reallocate.

Parameters
memoryMemory to release / deallocate

The documentation for this struct was generated from the following file: