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 ccac761c..f718d857 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 1.49 2001/02/01 17:40:48 roberto Exp roberto $ 2** $Id: lstate.h,v 1.50 2001/02/02 15:13:05 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*/
@@ -55,7 +55,7 @@ struct TM; /* defined in ltm.h */
55 55
56typedef struct stringtable { 56typedef struct stringtable {
57 int size; 57 int size;
58 luint32 nuse; /* number of elements */ 58 ls_nstr nuse; /* number of elements */
59 TString **hash; 59 TString **hash;
60} stringtable; 60} stringtable;
61 61
@@ -79,8 +79,8 @@ typedef struct global_State {
79 int nref; /* first unused element in refArray */ 79 int nref; /* first unused element in refArray */
80 int sizeref; /* size of refArray */ 80 int sizeref; /* size of refArray */
81 int refFree; /* list of free positions in refArray */ 81 int refFree; /* list of free positions in refArray */
82 mem_int GCthreshold; 82 lu_mem GCthreshold;
83 mem_int nblocks; /* number of `bytes' currently allocated */ 83 lu_mem nblocks; /* number of `bytes' currently allocated */
84} global_State; 84} global_State;
85 85
86 86