comparison vmalloc.h @ 115:62c59f2ac9f1

first changes malloc
author Merten Sach <msach@mailbox.tu-berlin.de>
date Thu, 25 Aug 2011 16:32:13 +0200
parents def70e32cf2c
children 35547e66b971
comparison
equal deleted inserted replaced
7:0835c35638d7 8:2bf8420a4e87
40 struct MallocArrays 40 struct MallocArrays
41 { 41 {
42 MallocProlog **smallChunks; 42 MallocProlog **smallChunks;
43 uint32 smallChunkCount[SMALL_CHUNK_COUNT]; 43 uint32 smallChunkCount[SMALL_CHUNK_COUNT];
44 MallocProlog **bigChunks; 44 MallocProlog **bigChunks;
45 uint64 bigChunksSearchVector;
45 void *memSpace; 46 void *memSpace;
46 uint32 containerCount; 47 uint32 containerCount;
47 }; 48 };
48 //MallocArrays 49 //MallocArrays
49 50