Bug 785463 - Tweak PurpleBuffer Block size, r=mccr8

This commit is contained in:
Olli Pettay 2012-08-24 12:26:44 -07:00
parent 6989c69f3c
commit 0a74c76449

View File

@ -704,7 +704,8 @@ struct nsPurpleBuffer
private:
struct Block {
Block *mNext;
nsPurpleBufferEntry mEntries[255];
// Try to match the size of a jemalloc bucket.
nsPurpleBufferEntry mEntries[1360];
Block() : mNext(nullptr) {}
};