diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-10-20 09:35:50 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-10-20 09:35:50 -0200 |
commit | 9f4211310fcea9ebf08f4884f8665520c1b8d85f (patch) | |
tree | 7a58485c291dfc3154c6ea110c9ff65aac26172b /lua.h | |
parent | 515d55683224eb78b8e8c69d3b0c7ed7a7c2076f (diff) | |
download | lua-9f4211310fcea9ebf08f4884f8665520c1b8d85f.tar.gz lua-9f4211310fcea9ebf08f4884f8665520c1b8d85f.tar.bz2 lua-9f4211310fcea9ebf08f4884f8665520c1b8d85f.zip |
more precision for gc count
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.212 2005/08/25 20:02:08 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.213 2005/09/20 17:55:10 roberto Exp roberto $ |
3 | ** Lua - An Extensible Extension Language | 3 | ** Lua - An Extensible Extension Language |
4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) | 4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) |
5 | ** See Copyright Notice at the end of this file | 5 | ** See Copyright Notice at the end of this file |
@@ -221,9 +221,10 @@ LUA_API int (lua_status) (lua_State *L); | |||
221 | #define LUA_GCRESTART 1 | 221 | #define LUA_GCRESTART 1 |
222 | #define LUA_GCCOLLECT 2 | 222 | #define LUA_GCCOLLECT 2 |
223 | #define LUA_GCCOUNT 3 | 223 | #define LUA_GCCOUNT 3 |
224 | #define LUA_GCSTEP 4 | 224 | #define LUA_GCCOUNTB 4 |
225 | #define LUA_GCSETPAUSE 5 | 225 | #define LUA_GCSTEP 5 |
226 | #define LUA_GCSETSTEPMUL 6 | 226 | #define LUA_GCSETPAUSE 6 |
227 | #define LUA_GCSETSTEPMUL 7 | ||
227 | 228 | ||
228 | LUA_API int (lua_gc) (lua_State *L, int what, int data); | 229 | LUA_API int (lua_gc) (lua_State *L, int what, int data); |
229 | 230 | ||