aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lstate.h b/lstate.h
index 9c0434b9..02180df7 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 2.88 2013/08/22 15:21:48 roberto Exp roberto $ 2** $Id: lstate.h,v 2.89 2013/08/23 13:34:54 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -128,6 +128,7 @@ typedef struct global_State {
128 lu_byte gcrunning; /* true if GC is running */ 128 lu_byte gcrunning; /* true if GC is running */
129 GCObject *allgc; /* list of all collectable objects */ 129 GCObject *allgc; /* list of all collectable objects */
130 GCObject *localgc; /* list of local objects */ 130 GCObject *localgc; /* list of local objects */
131 GCObject *localupv; /* list of local upvalues */
131 GCObject *finobj; /* list of collectable objects with finalizers */ 132 GCObject *finobj; /* list of collectable objects with finalizers */
132 GCObject **sweepgc; /* current position of sweep in list 'allgc' */ 133 GCObject **sweepgc; /* current position of sweep in list 'allgc' */
133 GCObject **sweepfin; /* current position of sweep in list 'finobj' */ 134 GCObject **sweepfin; /* current position of sweep in list 'finobj' */