aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lstate.h b/lstate.h
index f24f2d0a..da0f1681 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 1.27 1999/12/27 17:33:22 roberto Exp roberto $ 2** $Id: lstate.h,v 1.28 2000/01/19 12:00:45 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*/
@@ -30,7 +30,7 @@ struct lua_longjmp {
30/* 30/*
31** stack layout for C point of view: 31** stack layout for C point of view:
32** [lua2C, lua2C+num) - `array' lua2C 32** [lua2C, lua2C+num) - `array' lua2C
33** [lua2C+num, base) - space for extra lua_Objects 33** [lua2C+num, base) - space for extra lua_Objects (limbo)
34** [base, L->top) - `stack' C2Lua 34** [base, L->top) - `stack' C2Lua
35*/ 35*/
36struct C_Lua_Stack { 36struct C_Lua_Stack {
@@ -70,7 +70,7 @@ struct lua_State {
70 stringtable *string_root; /* array of hash tables for strings and udata */ 70 stringtable *string_root; /* array of hash tables for strings and udata */
71 struct IM *IMtable; /* table for tag methods */ 71 struct IM *IMtable; /* table for tag methods */
72 int last_tag; /* last used tag in IMtable */ 72 int last_tag; /* last used tag in IMtable */
73 struct ref *refArray; /* locked objects */ 73 struct Ref *refArray; /* locked objects */
74 int refSize; /* size of refArray */ 74 int refSize; /* size of refArray */
75 int refFree; /* list of free positions in refArray */ 75 int refFree; /* list of free positions in refArray */
76 unsigned long GCthreshold; 76 unsigned long GCthreshold;