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

9 lines
201 B
C

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