lisp-take-1/gc/defines/GARBAGE_COLLECTION_RUN_EVERY.h
2024-11-28 18:36:25 -06:00

10 lines
196 B
C

// units are in bytes, not number of lisp_value structs:
#ifdef RELEASE_BUILD
#define GARBAGE_COLLECTION_RUN_EVERY (1024 * 1024)
#else
#define GARBAGE_COLLECTION_RUN_EVERY (10)
#endif