comparison vmalloc.h @ 116:35547e66b971

malloc: multiple small chunk allocation
author Merten Sach <msach@mailbox.tu-berlin.de>
date Mon, 29 Aug 2011 17:09:00 +0200
parents 62c59f2ac9f1
children 07e679ee2095
comparison
equal deleted inserted replaced
8:2bf8420a4e87 9:f65ccd26a56d
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 uint64 bigChunksSearchVector[2];
46 void *memSpace; 46 void *memSpace;
47 uint32 containerCount; 47 uint32 containerCount;
48 }; 48 };
49 //MallocArrays 49 //MallocArrays
50 50