From 1bf4faec64aca03e1036235e72675f0617124140 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 30 Aug 2013 16:14:26 -0300 Subject: new GC state to sweep 'localgc' list + small changes in sweep control --- lstate.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index e0aed2d9..e03b75f2 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 2.90 2013/08/26 12:41:10 roberto Exp roberto $ +** $Id: lstate.h,v 2.91 2013/08/27 18:53:35 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -122,8 +122,7 @@ typedef struct global_State { GCObject *allgc; /* list of all collectable objects */ GCObject *localgc; /* list of local objects */ GCObject *finobj; /* list of collectable objects with finalizers */ - GCObject **sweepgc; /* current position of sweep in list 'allgc' */ - GCObject **sweepfin; /* current position of sweep in list 'finobj' */ + GCObject **sweepgc; /* current position of sweep in list */ GCObject *gray; /* list of gray objects */ GCObject *grayagain; /* list of objects to be traversed atomically */ GCObject *weak; /* list of tables with weak values */ -- cgit v1.2.3-55-g6feb