diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-03-22 13:04:29 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-03-22 13:04:29 -0300 |
commit | 390256edf77638f747bc11b1b0862e6154ecfbcb (patch) | |
tree | ad334fdf75a29534f8e7a31f5e1f05b224725a40 /lstate.h | |
parent | ad24cff0f1108ee8e2c28f72e10da44ea2205c10 (diff) | |
download | lua-390256edf77638f747bc11b1b0862e6154ecfbcb.tar.gz lua-390256edf77638f747bc11b1b0862e6154ecfbcb.tar.bz2 lua-390256edf77638f747bc11b1b0862e6154ecfbcb.zip |
better name for GC pause
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 2.16 2005/02/23 17:30:22 roberto Exp roberto $ | 2 | ** $Id: lstate.h,v 2.17 2005/03/18 18:55:09 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 | */ |
@@ -83,7 +83,7 @@ typedef struct global_State { | |||
83 | lu_mem totalbytes; /* number of bytes currently allocated */ | 83 | lu_mem totalbytes; /* number of bytes currently allocated */ |
84 | lu_mem estimate; /* an estimate of number of bytes actually in use */ | 84 | lu_mem estimate; /* an estimate of number of bytes actually in use */ |
85 | lu_mem gcdept; /* how much GC is `behind schedule' */ | 85 | lu_mem gcdept; /* how much GC is `behind schedule' */ |
86 | int gcpace; /* size of pause between successive GCs */ | 86 | int gcpause; /* size of pause between successive GCs */ |
87 | int gcstepmul; /* GC `granularity' */ | 87 | int gcstepmul; /* GC `granularity' */ |
88 | lua_CFunction panic; /* to be called in unprotected errors */ | 88 | lua_CFunction panic; /* to be called in unprotected errors */ |
89 | TValue _registry; | 89 | TValue _registry; |