From aa73403ba41f7f0992e839e5eb3dd480ef3c01a3 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 3 May 2010 14:39:48 -0300 Subject: no need of a KGC_FORCED collection kind; it has the same behavior of a normal collection --- lstate.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index 28fd8d92..452046fb 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 2.63 2010/04/13 20:48:12 roberto Exp roberto $ +** $Id: lstate.h,v 2.64 2010/04/29 17:31:31 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -54,9 +54,8 @@ struct lua_longjmp; /* defined in ldo.c */ /* kinds of Garbage Collection */ #define KGC_NORMAL 0 -#define KGC_FORCED 1 /* gc was forced by the program */ -#define KGC_EMERGENCY 2 /* gc was forced by an allocation failure */ -#define KGC_GEN 3 /* generational collection */ +#define KGC_EMERGENCY 1 /* gc was forced by an allocation failure */ +#define KGC_GEN 2 /* generational collection */ typedef struct stringtable { -- cgit v1.2.3-55-g6feb