DVBCore
1.0
Open source DVB engine
|
00001 /******************************************************************************* 00002 * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org) 00003 * Copyright © 2004 Ocean Blue Software Ltd 00004 * 00005 * This file is part of a DTVKit Software Component 00006 * You are permitted to copy, modify or distribute this file subject to the terms 00007 * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org 00008 * 00009 * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, 00010 * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES 00011 * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. 00012 * 00013 * If you or your organisation is not a member of DTVKit then you have access 00014 * to this source code outside of the terms of the licence agreement 00015 * and you are expected to delete this and any associated files immediately. 00016 * Further information on DTVKit, membership and terms can be found at www.dtvkit.org 00017 *******************************************************************************/ 00024 #ifndef _STBHEAP_H 00025 00026 #define _STBHEAP_H 00027 00028 //---Constant and macro definitions for public use----------------------------- 00029 00030 #ifndef PGW_ENABLED 00031 //#define PGW_ENABLED 00032 #endif 00033 00034 //---Enumerations for public use----------------------------------------------- 00035 00036 //---Global type defs for public use------------------------------------------- 00037 00038 //---Global Function prototypes for public use--------------------------------- 00039 00040 void STB_HeapInitialise(void); 00041 00042 // RAM functions 00043 #ifndef PGW_ENABLED 00044 void* STB_GetMemory(U32BIT bytes); 00045 void STB_FreeMemory(void *addr); 00046 void* STB_ResizeMemory(void *ptr, U32BIT new_num_bytes); 00047 00048 void* STB_AppGetMemory(U32BIT bytes); 00049 void STB_AppFreeMemory(void *addr); 00050 void* STB_AppResizeMemory(void *ptr, U32BIT new_num_bytes); 00051 #else 00052 void* STB_GetMemoryPGW(U32BIT bytes, char *filename, int linenum); 00053 void STB_FreeMemoryPGW(void *addr, char *filename, int linenum); 00054 void* STB_ResizeMemoryPGW(void *ptr, U32BIT size, char *filename, int lineno); 00055 00056 void* STB_AppGetMemoryPGW(U32BIT bytes, char *filename, int linenum); 00057 void STB_AppFreeMemoryPGW(void *addr, char *filename, int linenum); 00058 void* STB_AppResizeMemoryPGW(void *ptr, U32BIT size, char *filename, int lineno); 00059 00060 void STB_MemoryDumpPGW(BOOLEAN full); 00061 00062 #define STB_GetMemory(a) STB_GetMemoryPGW(a, __FILE__, __LINE__) 00063 #define STB_FreeMemory(a) STB_FreeMemoryPGW(a, __FILE__, __LINE__) 00064 #define STB_ResizeMemory(a, b) STB_ResizeMemoryPGW(a, b, __FILE__, __LINE__) 00065 00066 #define STB_AppGetMemory(a) STB_AppGetMemoryPGW(a, __FILE__, __LINE__) 00067 #define STB_AppFreeMemory(a) STB_AppFreeMemoryPGW(a, __FILE__, __LINE__) 00068 #define STB_AppResizeMemory(a, b) STB_AppResizeMemoryPGW(a, b, __FILE__, __LINE__) 00069 #endif 00070 void STB_AppRegisterCacheFreeFunction(BOOLEAN (*callback_function)(void)); 00071 00072 void STB_GetHeapStats(U32BIT *total_app, U32BIT *max_app, U32BIT *num_app, 00073 U32BIT *total_mem, U32BIT *max_mem, U32BIT *num_mem); 00074 00075 #endif // _STBHEAP_H 00076 00077 //***************************************************************************** 00078 // End of file 00079 //***************************************************************************** 00080