aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lstate.h b/lstate.h
index 393f477a..cffaf0a2 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 2.28 2007/02/07 17:48:52 roberto Exp roberto $ 2** $Id: lstate.h,v 2.29 2007/10/29 16:51:20 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*/
@@ -78,9 +78,9 @@ typedef struct global_State {
78 GCObject **sweepgc; /* position of sweep in `rootgc' */ 78 GCObject **sweepgc; /* position of sweep in `rootgc' */
79 GCObject *gray; /* list of gray objects */ 79 GCObject *gray; /* list of gray objects */
80 GCObject *grayagain; /* list of objects to be traversed atomically */ 80 GCObject *grayagain; /* list of objects to be traversed atomically */
81 GCObject *weakvalue; /* list of value-weak tables */ 81 GCObject *weak; /* list of (something) weak tables */
82 GCObject *weakkey; /* list of key-weak tables */ 82 GCObject *ephemeron; /* list of ephemeron tables */
83 GCObject *weakkeyvalue; /* list of all-weak tables */ 83 GCObject *allweak; /* list of all-weak tables */
84 GCObject *tmudata; /* last element of list of userdata to be GC */ 84 GCObject *tmudata; /* last element of list of userdata to be GC */
85 Mbuffer buff; /* temporary buffer for string concatentation */ 85 Mbuffer buff; /* temporary buffer for string concatentation */
86 lu_mem GCthreshold; 86 lu_mem GCthreshold;