mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-12 06:38:45 +01:00
Bump default heap size up.
This makes the binary_trees benchmark much faster.
This commit is contained in:
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user