Bump default heap size up.

This makes the binary_trees benchmark much faster.
This commit is contained in:
Bob Nystrom
2013-12-20 07:05:13 -08:00
parent b937597ea7
commit 61e745d548

View File

@ -23,7 +23,7 @@ WrenVM* wrenNewVM(WrenReallocateFn reallocateFn)
vm->bytesAllocated = 0;
// TODO: Make this configurable.
vm->nextGC = 1024 * 1024 * 10;
vm->nextGC = 1024 * 1024 * 100;
vm->first = NULL;
vm->pinned = NULL;