Bug 785463 - Tweak PurpleBuffer Block size, r=mccr8

This commit is contained in:
Olli Pettay 2012-08-24 12:26:44 -07:00
parent c2a2357c1c
commit 5931bf34db

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) {}
};