aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/lstate.h b/lstate.h
index 8aece88e..ae8c5500 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 2.81 2012/06/08 15:14:04 roberto Exp roberto $ 2** $Id: lstate.h,v 2.82 2012/07/02 13:37:04 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*/
@@ -53,7 +53,6 @@ struct lua_longjmp; /* defined in ldo.c */
53/* kinds of Garbage Collection */ 53/* kinds of Garbage Collection */
54#define KGC_NORMAL 0 54#define KGC_NORMAL 0
55#define KGC_EMERGENCY 1 /* gc was forced by an allocation failure */ 55#define KGC_EMERGENCY 1 /* gc was forced by an allocation failure */
56#define KGC_GEN 2 /* generational collection */
57 56
58 57
59typedef struct stringtable { 58typedef struct stringtable {
@@ -137,7 +136,6 @@ typedef struct global_State {
137 UpVal uvhead; /* head of double-linked list of all open upvalues */ 136 UpVal uvhead; /* head of double-linked list of all open upvalues */
138 Mbuffer buff; /* temporary buffer for string concatenation */ 137 Mbuffer buff; /* temporary buffer for string concatenation */
139 int gcpause; /* size of pause between successive GCs */ 138 int gcpause; /* size of pause between successive GCs */
140 int gcmajorinc; /* pause between major collections (only in gen. mode) */
141 int gcstepmul; /* GC `granularity' */ 139 int gcstepmul; /* GC `granularity' */
142 lua_CFunction panic; /* to be called in unprotected errors */ 140 lua_CFunction panic; /* to be called in unprotected errors */
143 struct lua_State *mainthread; 141 struct lua_State *mainthread;