diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-10-02 13:43:29 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-10-02 13:43:29 -0300 |
commit | b840a7518df607d2a1024c33dc2cc2022054d40a (patch) | |
tree | 9ea72df79cb3a5b4cf6f8fa76026949b96cc278e /lstate.h | |
parent | f54cdb33a565aacd41fe00a172a3062a4a33118b (diff) | |
download | lua-b840a7518df607d2a1024c33dc2cc2022054d40a.tar.gz lua-b840a7518df607d2a1024c33dc2cc2022054d40a.tar.bz2 lua-b840a7518df607d2a1024c33dc2cc2022054d40a.zip |
details
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.h,v 1.58 2001/06/15 19:16:41 roberto Exp $ | 2 | ** $Id: lstate.h,v 1.59 2001/09/07 17:39:10 roberto Exp $ |
3 | ** Global State | 3 | ** Global State |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -66,7 +66,7 @@ typedef struct global_State { | |||
66 | lu_mem GCthreshold; | 66 | lu_mem GCthreshold; |
67 | lu_mem nblocks; /* number of `bytes' currently allocated */ | 67 | lu_mem nblocks; /* number of `bytes' currently allocated */ |
68 | Proto *rootproto; /* list of all prototypes */ | 68 | Proto *rootproto; /* list of all prototypes */ |
69 | Closure *rootcl; /* list of all closed closures */ | 69 | Closure *rootcl; /* list of all C closures and closed Lua closures */ |
70 | Hash *roottable; /* list of all tables */ | 70 | Hash *roottable; /* list of all tables */ |
71 | Udata *rootudata; /* list of all userdata */ | 71 | Udata *rootudata; /* list of all userdata */ |
72 | UpVal *rootupval; /* list of all up values */ | 72 | UpVal *rootupval; /* list of all up values */ |