aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-03-29 14:43:14 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-03-29 14:43:14 -0300
commita8d3aa14fdcbc8c8ee6512bbcb4ad51a488a1e57 (patch)
treebda3a46753aff65cef00562e405b999c47fbb15b /lstate.h
parent064e406f67c0153999a5246deb1d616b06ee9bb0 (diff)
downloadlua-a8d3aa14fdcbc8c8ee6512bbcb4ad51a488a1e57.tar.gz
lua-a8d3aa14fdcbc8c8ee6512bbcb4ad51a488a1e57.tar.bz2
lua-a8d3aa14fdcbc8c8ee6512bbcb4ad51a488a1e57.zip
global table now is only kept in the registry
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lstate.h b/lstate.h
index 17abe10b..caaa70ec 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 2.57 2010/03/25 19:37:23 roberto Exp roberto $ 2** $Id: lstate.h,v 2.58 2010/03/26 20:58:11 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*/
@@ -121,7 +121,6 @@ typedef struct global_State {
121 lu_mem lastmajormem; /* memory in use after last major collection */ 121 lu_mem lastmajormem; /* memory in use after last major collection */
122 stringtable strt; /* hash table for strings */ 122 stringtable strt; /* hash table for strings */
123 TValue l_registry; 123 TValue l_registry;
124 struct Table *l_gt; /* table of globals */
125 unsigned short nCcalls; /* number of nested C calls */ 124 unsigned short nCcalls; /* number of nested C calls */
126 lu_byte currentwhite; 125 lu_byte currentwhite;
127 lu_byte gcstate; /* state of garbage collector */ 126 lu_byte gcstate; /* state of garbage collector */