aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lstate.h b/lstate.h
index dc74370b..d844fc8c 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 2.136 2017/04/05 16:50:51 roberto Exp roberto $ 2** $Id: lstate.h,v 2.137 2017/04/11 18:41:09 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*/
@@ -148,6 +148,8 @@ typedef struct global_State {
148 lu_byte currentwhite; 148 lu_byte currentwhite;
149 lu_byte gcstate; /* state of garbage collector */ 149 lu_byte gcstate; /* state of garbage collector */
150 lu_byte gckind; /* kind of GC running */ 150 lu_byte gckind; /* kind of GC running */
151 lu_byte genminormul; /* control for minor generational collections */
152 lu_byte genmajormul; /* control for major generational collections */
151 lu_byte gcrunning; /* true if GC is running */ 153 lu_byte gcrunning; /* true if GC is running */
152 GCObject *allgc; /* list of all collectable objects */ 154 GCObject *allgc; /* list of all collectable objects */
153 GCObject **sweepgc; /* current position of sweep in list */ 155 GCObject **sweepgc; /* current position of sweep in list */