aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/lstate.h b/lstate.h
index 51c6e27d..abd212ad 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 1.41 2000/10/05 13:00:17 roberto Exp roberto $ 2** $Id: lstate.h,v 1.42 2000/11/24 17:39:56 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*/
@@ -61,9 +61,11 @@ struct lua_State {
61 stringtable udt; /* hash table for udata */ 61 stringtable udt; /* hash table for udata */
62 Hash *gt; /* table for globals */ 62 Hash *gt; /* table for globals */
63 struct TM *TMtable; /* table for tag methods */ 63 struct TM *TMtable; /* table for tag methods */
64 int last_tag; /* last used tag in TMtable */ 64 int sizeTM; /* size of TMtable */
65 int ntag; /* number of tags in TMtable */
65 struct Ref *refArray; /* locked objects */ 66 struct Ref *refArray; /* locked objects */
66 int refSize; /* size of refArray */ 67 int nref; /* first unused element in refArray */
68 int sizeref; /* size of refArray */
67 int refFree; /* list of free positions in refArray */ 69 int refFree; /* list of free positions in refArray */
68 mem_int GCthreshold; 70 mem_int GCthreshold;
69 mem_int nblocks; /* number of `bytes' currently allocated */ 71 mem_int nblocks; /* number of `bytes' currently allocated */