From d324a0ccf9e2511baf182dd981a8ee9835cee925 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 29 Nov 2022 10:37:08 -0300 Subject: Simpler control for major collections --- lgc.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'lgc.h') diff --git a/lgc.h b/lgc.h index a4c54b47..3c871969 100644 --- a/lgc.h +++ b/lgc.h @@ -141,14 +141,6 @@ #define LUAI_GCSTEPSIZE 8 /* 256 objects */ -/* -** Check whether the declared GC mode is generational. While in -** generational mode, the collector can go temporarily to incremental -** mode to improve performance. This is signaled by 'g->lastatomic != 0'. -*/ -#define isdecGCmodegen(g) (g->gckind == KGC_GEN || g->lastatomic != 0) - - /* ** Control when GC is running: */ -- cgit v1.2.3-55-g6feb