increase heap pool size and fixed footprint threshold constants based on performance profiling and experimentation (second try)

This commit is contained in:
Joel Dice 2008-11-22 14:48:10 -07:00
parent 8a7852172e
commit 6162dfafbb

View File

@ -48,7 +48,7 @@ const uintptr_t FixedMark = 3;
const unsigned ThreadHeapSizeInBytes = 64 * 1024;
const unsigned ThreadHeapSizeInWords = ThreadHeapSizeInBytes / BytesPerWord;
const unsigned ThreadHeapPoolSize = 32;
const unsigned ThreadHeapPoolSize = 64;
const unsigned FixedFootprintThresholdInBytes
= ThreadHeapPoolSize * ThreadHeapSizeInBytes;