forked from Mirror/wren
set WREN_MAX_TEMP_ROOTS default to 8 instead of 5
that's 64 bytes, fits nicely in a cache line and isn't _as_ arbitrary.
This commit is contained in:
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
// The maximum number of temporary objects that can be made visible to the GC
|
// The maximum number of temporary objects that can be made visible to the GC
|
||||||
// at one time.
|
// at one time.
|
||||||
#define WREN_MAX_TEMP_ROOTS 5
|
#define WREN_MAX_TEMP_ROOTS 8
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user