DVBCore  17.9.0
Open Source DVB Engine
 All Data Structures Files Functions Typedefs Macros Pages
Functions
stbheap.h File Reference

Header file - Function prototypes for heap memory. More...

#include "techtype.h"

Go to the source code of this file.

Functions

void STB_HeapInitialise (void)
 
void * STB_GetMemory (U32BIT bytes)
 Attempts to allocate memory from the heap. More...
 
void STB_FreeMemory (void *addr)
 Releases previously allocated heap memory. More...
 
void * STB_ResizeMemory (void *ptr, U32BIT new_num_bytes)
 Re-allocates a given memory area to the new size, ensuring data contained within the original memory block is maintained. More...
 
void * STB_AppGetMemory (U32BIT bytes)
 Attempts to allocate memory from the application heap. More...
 
void STB_AppFreeMemory (void *addr)
 Releases previously allocated application heap memory. More...
 
void * STB_AppResizeMemory (void *ptr, U32BIT new_num_bytes)
 Re-allocates a given memory area to the new size, ensuring data contained within the original memory block is maintained. More...
 
void STB_AppRegisterCacheFreeFunction (BOOLEAN(*callback_function)(void))
 
void STB_GetHeapStats (U32BIT *total_app, U32BIT *max_app, U32BIT *num_app, U32BIT *total_mem, U32BIT *max_mem, U32BIT *num_mem)
 

Detailed Description

Header file - Function prototypes for heap memory.

Date
06/09/2000

Function Documentation

void STB_AppFreeMemory ( void *  addr)

Releases previously allocated application heap memory.

Parameters
addr- pointer to block to release.
void* STB_AppGetMemory ( U32BIT  bytes)

Attempts to allocate memory from the application heap.

Parameters
bytes- block size required in bytes
Returns
Pointer to block allocated or NULL on failure.
void* STB_AppResizeMemory ( void *  ptr,
U32BIT  new_num_bytes 
)

Re-allocates a given memory area to the new size, ensuring data contained within the original memory block is maintained.

Parameters
ptr- pointer to block to re-allocate.
new_num_bytes- size of new memory block
Returns
Pointer to the new (re-sized) memory block.
void STB_FreeMemory ( void *  addr)

Releases previously allocated heap memory.

Parameters
addr- pointer to block to release.
void* STB_GetMemory ( U32BIT  bytes)

Attempts to allocate memory from the heap.

Parameters
bytes- block size required in bytes
Returns
Pointer to block allocated or NULL on failure.
void* STB_ResizeMemory ( void *  ptr,
U32BIT  new_num_bytes 
)

Re-allocates a given memory area to the new size, ensuring data contained within the original memory block is maintained.

Parameters
ptr- pointer to block to re-allocate.
new_num_bytes- size of new memory block
Returns
Pointer to the new (re-sized) memory block.