123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689 |
- // Copyright (c) Athena Dev Teams - Licensed under GNU GPL
- // For more information, see LICENCE in the main folder
- #include "../common/malloc.h"
- #include "../common/core.h"
- #include "../common/showmsg.h"
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <time.h>
- // no logging for minicore
- #if defined(MINICORE) && defined(LOG_MEMMGR)
- #undef LOG_MEMMGR
- #endif
- void* aMalloc_(size_t size, const char *file, int line, const char *func)
- {
- void *ret = MALLOC(size, file, line, func);
- // ShowMessage("%s:%d: in func %s: aMalloc %d\n",file,line,func,size);
- if (ret == NULL){
- ShowFatalError("%s:%d: in func %s: aMalloc error out of memory!\n",file,line,func);
- exit(EXIT_FAILURE);
- }
- return ret;
- }
- void* aMallocA_(size_t size, const char *file, int line, const char *func)
- {
- void *ret = MALLOCA(size, file, line, func);
- // ShowMessage("%s:%d: in func %s: aMallocA %d\n",file,line,func,size);
- if (ret == NULL){
- ShowFatalError("%s:%d: in func %s: aMallocA error out of memory!\n",file,line,func);
- exit(EXIT_FAILURE);
- }
- return ret;
- }
- void* aCalloc_(size_t num, size_t size, const char *file, int line, const char *func)
- {
- void *ret = CALLOC(num, size, file, line, func);
- // ShowMessage("%s:%d: in func %s: aCalloc %d %d\n",file,line,func,num,size);
- if (ret == NULL){
- ShowFatalError("%s:%d: in func %s: aCalloc error out of memory!\n", file, line, func);
- exit(EXIT_FAILURE);
- }
- return ret;
- }
- void* aCallocA_(size_t num, size_t size, const char *file, int line, const char *func)
- {
- void *ret = CALLOCA(num, size, file, line, func);
- // ShowMessage("%s:%d: in func %s: aCallocA %d %d\n",file,line,func,num,size);
- if (ret == NULL){
- ShowFatalError("%s:%d: in func %s: aCallocA error out of memory!\n",file,line,func);
- exit(EXIT_FAILURE);
- }
- return ret;
- }
- void* aRealloc_(void *p, size_t size, const char *file, int line, const char *func)
- {
- void *ret = REALLOC(p, size, file, line, func);
- // ShowMessage("%s:%d: in func %s: aRealloc %p %d\n",file,line,func,p,size);
- if (ret == NULL){
- ShowFatalError("%s:%d: in func %s: aRealloc error out of memory!\n",file,line,func);
- exit(EXIT_FAILURE);
- }
- return ret;
- }
- char* aStrdup_(const char *p, const char *file, int line, const char *func)
- {
- char *ret = STRDUP(p, file, line, func);
- // ShowMessage("%s:%d: in func %s: aStrdup %p\n",file,line,func,p);
- if (ret == NULL){
- ShowFatalError("%s:%d: in func %s: aStrdup error out of memory!\n", file, line, func);
- exit(EXIT_FAILURE);
- }
- return ret;
- }
- void aFree_(void *p, const char *file, int line, const char *func)
- {
- // ShowMessage("%s:%d: in func %s: aFree %p\n",file,line,func,p);
- if (p)
- FREE(p, file, line, func);
- p = NULL;
- }
- #ifdef GCOLLECT
- void* _bcallocA(size_t size, size_t cnt)
- {
- void *ret = MALLOCA(size * cnt);
- if (ret) memset(ret, 0, size * cnt);
- return ret;
- }
- void* _bcalloc(size_t size, size_t cnt)
- {
- void *ret = MALLOC(size * cnt);
- if (ret) memset(ret, 0, size * cnt);
- return ret;
- }
- char* _bstrdup(const char *chr)
- {
- int len = strlen(chr);
- char *ret = (char*)MALLOC(len + 1);
- if (ret) memcpy(ret, chr, len + 1);
- return ret;
- }
- #endif
- #ifdef USE_MEMMGR
- #define DEBUG_MEMMGR
- /* USE_MEMMGR */
- /*
- * メモリマネージャ
- * malloc , free の処理を効率的に出来るようにしたもの。
- * 複雑な処理を行っているので、若干重くなるかもしれません。
- *
- * データ構造など(説明下手ですいません^^; )
- * ・メモリを複数の「ブロック」に分けて、さらにブロックを複数の「ユニット」
- * に分けています。ユニットのサイズは、1ブロックの容量を複数個に均等配分
- * したものです。たとえば、1ユニット32KBの場合、ブロック1つは32Byteのユ
- * ニットが、1024個集まって出来ていたり、64Byteのユニットが 512個集まって
- * 出来ていたりします。(padding,unit_head を除く)
- *
- * ・ブロック同士はリンクリスト(block_prev,block_next) でつながり、同じサイ
- * ズを持つブロック同士もリンクリスト(hash_prev,hash_nect) でつな
- * がっています。それにより、不要となったメモリの再利用が効率的に行えます。
- */
- /* ブロックのアライメント */
- #define BLOCK_ALIGNMENT1 16
- #define BLOCK_ALIGNMENT2 64
- /* ブロックに入るデータ量 */
- #define BLOCK_DATA_COUNT1 128
- #define BLOCK_DATA_COUNT2 608
- /* ブロックの大きさ: 16*128 + 64*576 = 40KB */
- #define BLOCK_DATA_SIZE1 ( BLOCK_ALIGNMENT1 * BLOCK_DATA_COUNT1 )
- #define BLOCK_DATA_SIZE2 ( BLOCK_ALIGNMENT2 * BLOCK_DATA_COUNT2 )
- #define BLOCK_DATA_SIZE ( BLOCK_DATA_SIZE1 + BLOCK_DATA_SIZE2 )
- /* 一度に確保するブロックの数。 */
- #define BLOCK_ALLOC 104
- /* ブロック */
- struct block {
- struct block* block_next; /* 次に確保した領域 */
- struct block* unfill_prev; /* 次の埋まっていない領域 */
- struct block* unfill_next; /* 次の埋まっていない領域 */
- unsigned short unit_size; /* ユニットの大きさ */
- unsigned short unit_hash; /* ユニットのハッシュ */
- unsigned short unit_count; /* ユニットの個数 */
- unsigned short unit_used; /* 使用ユニット数 */
- unsigned short unit_unfill; /* 未使用ユニットの場所 */
- unsigned short unit_maxused; /* 使用ユニットの最大値 */
- char data[ BLOCK_DATA_SIZE ];
- };
- struct unit_head {
- struct block *block;
- const char* file;
- unsigned short line;
- unsigned short size;
- long checksum;
- };
- static struct block* hash_unfill[BLOCK_DATA_COUNT1 + BLOCK_DATA_COUNT2 + 1];
- static struct block* block_first, *block_last, block_head;
- /* メモリを使い回せない領域用のデータ */
- struct unit_head_large {
- size_t size;
- struct unit_head_large* prev;
- struct unit_head_large* next;
- struct unit_head unit_head;
- };
- static struct unit_head_large *unit_head_large_first = NULL;
- static struct block* block_malloc(unsigned short hash);
- static void block_free(struct block* p);
- static size_t memmgr_usage_bytes;
- #define block2unit(p, n) ((struct unit_head*)(&(p)->data[ p->unit_size * (n) ]))
- #define memmgr_assert(v) do { if(!(v)) { ShowError("Memory manager: assertion '" #v "' failed!\n"); } } while(0)
- static unsigned short size2hash( size_t size )
- {
- if( size <= BLOCK_DATA_SIZE1 ) {
- return (unsigned short)(size + BLOCK_ALIGNMENT1 - 1) / BLOCK_ALIGNMENT1;
- } else if( size <= BLOCK_DATA_SIZE ){
- return (unsigned short)(size - BLOCK_DATA_SIZE1 + BLOCK_ALIGNMENT2 - 1) / BLOCK_ALIGNMENT2
- + BLOCK_DATA_COUNT1;
- } else {
- return 0xffff; // ブロック長を超える場合は hash にしない
- }
- }
- static size_t hash2size( unsigned short hash )
- {
- if( hash <= BLOCK_DATA_COUNT1) {
- return hash * BLOCK_ALIGNMENT1;
- } else {
- return (hash - BLOCK_DATA_COUNT1) * BLOCK_ALIGNMENT2 + BLOCK_DATA_SIZE1;
- }
- }
- void* _mmalloc(size_t size, const char *file, int line, const char *func )
- {
- struct block *block;
- short size_hash = size2hash( size );
- struct unit_head *head;
- if (((long) size) < 0) {
- ShowError("_mmalloc: %d\n", size);
- return 0;
- }
-
- if(size == 0) {
- return NULL;
- }
- memmgr_usage_bytes += size;
- /* ブロック長を超える領域の確保には、malloc() を用いる */
- /* その際、unit_head.block に NULL を代入して区別する */
- if(hash2size(size_hash) > BLOCK_DATA_SIZE - sizeof(struct unit_head)) {
- struct unit_head_large* p = (struct unit_head_large*)MALLOC(sizeof(struct unit_head_large)+size,file,line,func);
- if(p != NULL) {
- p->size = size;
- p->unit_head.block = NULL;
- p->unit_head.size = 0;
- p->unit_head.file = file;
- p->unit_head.line = line;
- p->prev = NULL;
- if (unit_head_large_first == NULL)
- p->next = NULL;
- else {
- unit_head_large_first->prev = p;
- p->next = unit_head_large_first;
- }
- unit_head_large_first = p;
- *(long*)((char*)p + sizeof(struct unit_head_large) - sizeof(long) + size) = 0xdeadbeaf;
- return (char *)p + sizeof(struct unit_head_large) - sizeof(long);
- } else {
- ShowFatalError("Memory manager::memmgr_alloc failed (allocating %d+%d bytes at %s:%d).\n", sizeof(struct unit_head_large), size, file, line);
- exit(EXIT_FAILURE);
- }
- }
- /* 同一サイズのブロックが確保されていない時、新たに確保する */
- if(hash_unfill[size_hash]) {
- block = hash_unfill[size_hash];
- } else {
- block = block_malloc(size_hash);
- }
- if( block->unit_unfill == 0xFFFF ) {
- // free済み領域が残っていない
- memmgr_assert(block->unit_used < block->unit_count);
- memmgr_assert(block->unit_used == block->unit_maxused);
- head = block2unit(block, block->unit_maxused);
- block->unit_used++;
- block->unit_maxused++;
- } else {
- head = block2unit(block, block->unit_unfill);
- block->unit_unfill = head->size;
- block->unit_used++;
- }
- if( block->unit_unfill == 0xFFFF && block->unit_maxused >= block->unit_count) {
- // ユニットを使い果たしたので、unfillリストから削除
- if( block->unfill_prev == &block_head) {
- hash_unfill[ size_hash ] = block->unfill_next;
- } else {
- block->unfill_prev->unfill_next = block->unfill_next;
- }
- if( block->unfill_next ) {
- block->unfill_next->unfill_prev = block->unfill_prev;
- }
- block->unfill_prev = NULL;
- }
- #ifdef DEBUG_MEMMGR
- {
- size_t i, sz = hash2size( size_hash );
- for( i=0; i<sz; i++ )
- {
- if( ((unsigned char*)head)[ sizeof(struct unit_head) - sizeof(long) + i] != 0xfd )
- {
- if( head->line != 0xfdfd )
- {
- ShowError("Memory manager: freed-data is changed. (freed in %s line %d)\n", head->file,head->line);
- }
- else
- {
- ShowError("Memory manager: not-allocated-data is changed.\n");
- }
- break;
- }
- }
- memset( (char *)head + sizeof(struct unit_head) - sizeof(long), 0xcd, sz );
- }
- #endif
- head->block = block;
- head->file = file;
- head->line = line;
- head->size = (unsigned short)size;
- *(long*)((char*)head + sizeof(struct unit_head) - sizeof(long) + size) = 0xdeadbeaf;
- return (char *)head + sizeof(struct unit_head) - sizeof(long);
- };
- void* _mcalloc(size_t num, size_t size, const char *file, int line, const char *func )
- {
- void *p = _mmalloc(num * size,file,line,func);
- memset(p,0,num * size);
- return p;
- }
- void* _mrealloc(void *memblock, size_t size, const char *file, int line, const char *func )
- {
- size_t old_size;
- if(memblock == NULL) {
- return _mmalloc(size,file,line,func);
- }
- old_size = ((struct unit_head *)((char *)memblock - sizeof(struct unit_head) + sizeof(long)))->size;
- if( old_size == 0 ) {
- old_size = ((struct unit_head_large *)((char *)memblock - sizeof(struct unit_head_large) + sizeof(long)))->size;
- }
- if(old_size > size) {
- // サイズ縮小 -> そのまま返す(手抜き)
- return memblock;
- } else {
- // サイズ拡大
- void *p = _mmalloc(size,file,line,func);
- if(p != NULL) {
- memcpy(p,memblock,old_size);
- }
- _mfree(memblock,file,line,func);
- return p;
- }
- }
- char* _mstrdup(const char *p, const char *file, int line, const char *func )
- {
- if(p == NULL) {
- return NULL;
- } else {
- size_t len = strlen(p);
- char *string = (char *)_mmalloc(len + 1,file,line,func);
- memcpy(string,p,len+1);
- return string;
- }
- }
- void _mfree(void *ptr, const char *file, int line, const char *func )
- {
- struct unit_head *head;
- if (ptr == NULL)
- return;
- head = (struct unit_head *)((char *)ptr - sizeof(struct unit_head) + sizeof(long));
- if(head->size == 0) {
- /* malloc() で直に確保された領域 */
- struct unit_head_large *head_large = (struct unit_head_large *)((char *)ptr - sizeof(struct unit_head_large) + sizeof(long));
- if(
- *(long*)((char*)head_large + sizeof(struct unit_head_large) - sizeof(long) + head_large->size)
- != 0xdeadbeaf)
- {
- ShowError("Memory manager: args of aFree 0x%p is overflowed pointer %s line %d\n", ptr, file, line);
- } else {
- head->size = -1;
- if(head_large->prev) {
- head_large->prev->next = head_large->next;
- } else {
- unit_head_large_first = head_large->next;
- }
- if(head_large->next) {
- head_large->next->prev = head_large->prev;
- }
- memmgr_usage_bytes -= head_large->size;
- #ifdef DEBUG_MEMMGR
- // set freed memory to 0xfd
- memset(ptr, 0xfd, head_large->size);
- #endif
- FREE(head_large,file,line,func);
- }
- } else {
- /* ユニット解放 */
- struct block *block = head->block;
- if( (char*)head - (char*)block > sizeof(struct block) ) {
- ShowError("Memory manager: args of aFree 0x%p is invalid pointer %s line %d\n", ptr, file, line);
- } else if(head->block == NULL) {
- ShowError("Memory manager: args of aFree 0x%p is freed pointer %s:%d@%s\n", ptr, file, line, func);
- } else if(*(long*)((char*)head + sizeof(struct unit_head) - sizeof(long) + head->size) != 0xdeadbeaf) {
- ShowError("Memory manager: args of aFree 0x%p is overflowed pointer %s line %d\n", ptr, file, line);
- } else {
- memmgr_usage_bytes -= head->size;
- head->block = NULL;
- #ifdef DEBUG_MEMMGR
- memset(ptr, 0xfd, block->unit_size - sizeof(struct unit_head) + sizeof(long) );
- head->file = file;
- head->line = line;
- #endif
- memmgr_assert( block->unit_used > 0 );
- if(--block->unit_used == 0) {
- /* ブロックの解放 */
- block_free(block);
- } else {
- if( block->unfill_prev == NULL) {
- // unfill リストに追加
- if( hash_unfill[ block->unit_hash ] ) {
- hash_unfill[ block->unit_hash ]->unfill_prev = block;
- }
- block->unfill_prev = &block_head;
- block->unfill_next = hash_unfill[ block->unit_hash ];
- hash_unfill[ block->unit_hash ] = block;
- }
- head->size = block->unit_unfill;
- block->unit_unfill = (unsigned short)(((unsigned long)head - (unsigned long)block->data) / block->unit_size);
- }
- }
- }
- }
- /* ブロックを確保する */
- static struct block* block_malloc(unsigned short hash)
- {
- int i;
- struct block *p;
- if(hash_unfill[0] != NULL) {
- /* ブロック用の領域は確保済み */
- p = hash_unfill[0];
- hash_unfill[0] = hash_unfill[0]->unfill_next;
- } else {
- /* ブロック用の領域を新たに確保する */
- p = (struct block*)MALLOC(sizeof(struct block) * (BLOCK_ALLOC), __FILE__, __LINE__, __func__ );
- if(p == NULL) {
- ShowFatalError("Memory manager::block_alloc failed.\n");
- exit(EXIT_FAILURE);
- }
- if(block_first == NULL) {
- /* 初回確保 */
- block_first = p;
- } else {
- block_last->block_next = p;
- }
- block_last = &p[BLOCK_ALLOC - 1];
- block_last->block_next = NULL;
- /* ブロックを連結させる */
- for(i=0;i<BLOCK_ALLOC;i++) {
- if(i != 0) {
- // p[0] はこれから使うのでリンクには加えない
- p[i].unfill_next = hash_unfill[0];
- hash_unfill[0] = &p[i];
- p[i].unfill_prev = NULL;
- p[i].unit_used = 0;
- }
- if(i != BLOCK_ALLOC -1) {
- p[i].block_next = &p[i+1];
- }
- }
- }
- // unfill に追加
- memmgr_assert(hash_unfill[ hash ] == NULL);
- hash_unfill[ hash ] = p;
- p->unfill_prev = &block_head;
- p->unfill_next = NULL;
- p->unit_size = (unsigned short)(hash2size( hash ) + sizeof(struct unit_head));
- p->unit_hash = hash;
- p->unit_count = BLOCK_DATA_SIZE / p->unit_size;
- p->unit_used = 0;
- p->unit_unfill = 0xFFFF;
- p->unit_maxused = 0;
- #ifdef DEBUG_MEMMGR
- memset( p->data, 0xfd, sizeof(p->data) );
- #endif
- return p;
- }
- static void block_free(struct block* p)
- {
- if( p->unfill_prev ) {
- if( p->unfill_prev == &block_head) {
- hash_unfill[ p->unit_hash ] = p->unfill_next;
- } else {
- p->unfill_prev->unfill_next = p->unfill_next;
- }
- if( p->unfill_next ) {
- p->unfill_next->unfill_prev = p->unfill_prev;
- }
- p->unfill_prev = NULL;
- }
- p->unfill_next = hash_unfill[0];
- hash_unfill[0] = p;
- }
- unsigned int memmgr_usage (void)
- {
- return memmgr_usage_bytes / 1024;
- }
- #ifdef LOG_MEMMGR
- static char memmer_logfile[128];
- static FILE *log_fp;
- static void memmgr_log (char *buf)
- {
- if( !log_fp )
- {
- time_t raw;
- struct tm* t;
- log_fp = fopen(memmer_logfile,"at");
- if (!log_fp) log_fp = stdout;
- time(&raw);
- t = localtime(&raw);
- fprintf(log_fp, "\nMemory manager: Memory leaks found at %d/%02d/%02d %02dh%02dm%02ds (Revision %s).\n",
- (t->tm_year+1900), (t->tm_mon+1), t->tm_mday, t->tm_hour, t->tm_min, t->tm_sec, get_svn_revision());
- }
- fprintf(log_fp, "%s", buf);
- return;
- }
- #endif /* LOG_MEMMGR */
- /// Returns true if the memory location is active.
- /// Active means it is allocated and points to a usable part.
- ///
- /// @param ptr Pointer to the memory
- /// @return true if the memory is active
- bool memmgr_verify(void* ptr)
- {
- struct block* block = block_first;
- struct unit_head_large* large = unit_head_large_first;
- if( ptr == NULL )
- return false;// never valid
- // search small blocks
- while( block )
- {
- if( (char*)ptr >= (char*)block && (char*)ptr < ((char*)block) + sizeof(struct block) )
- {// found memory block
- if( block->unit_used && (char*)ptr >= block->data )
- {// memory block is being used and ptr points to a sub-unit
- size_t i = (size_t)((char*)ptr - block->data)/block->unit_size;
- struct unit_head* head = block2unit(block, i);
- if( i < block->unit_maxused && head->block != NULL )
- {// memory unit is allocated, check if ptr points to the usable part
- return ( (char*)ptr >= ((char*)head) + sizeof(struct unit_head) - sizeof(long)
- && (char*)ptr < ((char*)head) + sizeof(struct unit_head) - sizeof(long) + head->size );
- }
- }
- return false;
- }
- block = block->block_next;
- }
- // search large blocks
- while( large )
- {
- if( (char*)ptr >= (char*)large && (char*)ptr < ((char*)large) + large->size )
- {// found memory block, check if ptr points to the usable part
- return ( (char*)ptr >= ((char*)large) + sizeof(struct unit_head_large) - sizeof(long)
- && (char*)ptr < ((char*)large) + sizeof(struct unit_head_large) - sizeof(long) + large->size );
- }
- large = large->next;
- }
- return false;
- }
- static void memmgr_final (void)
- {
- struct block *block = block_first;
- struct unit_head_large *large = unit_head_large_first;
- #ifdef LOG_MEMMGR
- int count = 0;
- #endif /* LOG_MEMMGR */
- while (block) {
- if (block->unit_used) {
- int i;
- for (i = 0; i < block->unit_maxused; i++) {
- struct unit_head *head = block2unit(block, i);
- if(head->block != NULL) {
- char* ptr = (char *)head + sizeof(struct unit_head) - sizeof(long);
- #ifdef LOG_MEMMGR
- char buf[1024];
- sprintf (buf,
- "%04d : %s line %d size %lu address 0x%p\n", ++count,
- head->file, head->line, (unsigned long)head->size, ptr);
- memmgr_log (buf);
- #endif /* LOG_MEMMGR */
- // get block pointer and free it [celest]
- _mfree(ptr, ALC_MARK);
- }
- }
- }
- block = block->block_next;
- }
- while(large) {
- struct unit_head_large *large2;
- #ifdef LOG_MEMMGR
- char buf[1024];
- sprintf (buf,
- "%04d : %s line %d size %lu address 0x%p\n", ++count,
- large->unit_head.file, large->unit_head.line, (unsigned long)large->size, &large->unit_head.checksum);
- memmgr_log (buf);
- #endif /* LOG_MEMMGR */
- large2 = large->next;
- FREE(large,file,line,func);
- large = large2;
- }
- #ifdef LOG_MEMMGR
- if(count == 0) {
- ShowInfo("Memory manager: No memory leaks found.\n");
- } else {
- ShowWarning("Memory manager: Memory leaks found and fixed.\n");
- fclose(log_fp);
- }
- #endif /* LOG_MEMMGR */
- return;
- }
- static void memmgr_init (void)
- {
- #ifdef LOG_MEMMGR
- sprintf(memmer_logfile, "log/%s.leaks", SERVER_NAME);
- ShowStatus("Memory manager initialised: "CL_WHITE"%s"CL_RESET"\n", memmer_logfile);
- memset(hash_unfill, 0, sizeof(hash_unfill));
- #endif /* LOG_MEMMGR */
- return;
- }
- #endif /* USE_MEMMGR */
- /*======================================
- * Initialise
- *--------------------------------------
- */
- bool malloc_verify(void* ptr)
- {
- #ifdef USE_MEMMGR
- return memmgr_verify(ptr);
- #else
- return true;
- #endif
- }
- unsigned int malloc_usage (void)
- {
- #ifdef USE_MEMMGR
- return memmgr_usage ();
- #else
- return 0;
- #endif
- }
- void malloc_final (void)
- {
- #ifdef USE_MEMMGR
- memmgr_final ();
- #endif
- return;
- }
- void malloc_init (void)
- {
- #ifdef USE_MEMMGR
- memmgr_init ();
- #endif
- return;
- }
|