X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=zone.h;h=af6ddfd586ed67476ad6af1eb8b1f29937af4ee4;hb=aa66a4f765e74b1cfa3085a9c8fa47861a55063e;hp=1d4118479a7be75f6265229994924853b6451cf8;hpb=30334016020f54bb93999010bed118f5605b06bd;p=xonotic%2Fdarkplaces.git diff --git a/zone.h b/zone.h index 1d411847..af6ddfd5 100644 --- a/zone.h +++ b/zone.h @@ -52,7 +52,7 @@ typedef struct memheader_s struct memclump_s *clump; #endif // size of the memory after the header (excluding header and sentinel2) - int size; + size_t size; // file name and line where Mem_Alloc was called const char *filename; int fileline; @@ -75,10 +75,10 @@ typedef struct memclump_s // should always be MEMCLUMP_SENTINEL unsigned int sentinel2; // if this drops to 0, the clump is freed - int blocksinuse; + size_t blocksinuse; // largest block of memory available (this is reset to an optimistic // number when anything is freed, and updated when alloc fails the clump) - int largestavailable; + size_t largestavailable; // next clump in the chain struct memclump_s *chain; } @@ -98,11 +98,11 @@ typedef struct mempool_s // POOLFLAG_* int flags; // total memory allocated in this pool (inside memheaders) - int totalsize; + size_t totalsize; // total memory allocated in this pool (actual malloc total) - int realsize; + size_t realsize; // updated each time the pool is displayed by memlist, shows change from previous time (unless pool was freed) - int lastchecksize; + size_t lastchecksize; // name of the pool char name[POOLNAMESIZE]; // linked into global mempool list @@ -132,6 +132,7 @@ void _Mem_FreePool(mempool_t **pool, const char *filename, int fileline); void _Mem_EmptyPool(mempool_t *pool, const char *filename, int fileline); void _Mem_CheckSentinels(void *data, const char *filename, int fileline); void _Mem_CheckSentinelsGlobal(const char *filename, int fileline); +// if pool is NULL this searches ALL pools for the allocation qboolean Mem_IsAllocated(mempool_t *pool, void *data); // used for temporary allocations