diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-02-19 17:06:56 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-02-19 17:06:56 -0300 |
commit | 1afd5a152dc8b3a304236dc4e07bca38ea5eb53a (patch) | |
tree | 7c4f880b09a023a3fe527d7d2cbcec9f11c09302 /lgc.h | |
parent | 422318f6777d8d3bac13ade797d9c8eaa38686b6 (diff) | |
download | lua-1afd5a152dc8b3a304236dc4e07bca38ea5eb53a.tar.gz lua-1afd5a152dc8b3a304236dc4e07bca38ea5eb53a.tar.bz2 lua-1afd5a152dc8b3a304236dc4e07bca38ea5eb53a.zip |
more generic way to handle 'gclist'
Diffstat (limited to 'lgc.h')
-rw-r--r-- | lgc.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lgc.h,v 2.100 2018/01/28 15:13:26 roberto Exp roberto $ | 2 | ** $Id: lgc.h,v 2.102 2018/02/19 13:55:34 roberto Exp roberto $ |
3 | ** Garbage Collector | 3 | ** Garbage Collector |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -173,7 +173,7 @@ LUAI_FUNC void luaC_runtilstate (lua_State *L, int statesmask); | |||
173 | LUAI_FUNC void luaC_fullgc (lua_State *L, int isemergency); | 173 | LUAI_FUNC void luaC_fullgc (lua_State *L, int isemergency); |
174 | LUAI_FUNC GCObject *luaC_newobj (lua_State *L, int tt, size_t sz); | 174 | LUAI_FUNC GCObject *luaC_newobj (lua_State *L, int tt, size_t sz); |
175 | LUAI_FUNC void luaC_barrier_ (lua_State *L, GCObject *o, GCObject *v); | 175 | LUAI_FUNC void luaC_barrier_ (lua_State *L, GCObject *o, GCObject *v); |
176 | LUAI_FUNC void luaC_barrierback_ (lua_State *L, Table *o); | 176 | LUAI_FUNC void luaC_barrierback_ (lua_State *L, GCObject *o); |
177 | LUAI_FUNC void luaC_protobarrier_ (lua_State *L, Proto *p); | 177 | LUAI_FUNC void luaC_protobarrier_ (lua_State *L, Proto *p); |
178 | LUAI_FUNC void luaC_checkfinalizer (lua_State *L, GCObject *o, Table *mt); | 178 | LUAI_FUNC void luaC_checkfinalizer (lua_State *L, GCObject *o, Table *mt); |
179 | LUAI_FUNC void luaC_changemode (lua_State *L, int newmode); | 179 | LUAI_FUNC void luaC_changemode (lua_State *L, int newmode); |