mirror of
https://github.com/lua/lua
synced 2026-09-27 00:28:25 +03:00
compensate for 'GCSTEPSIZE' in GC steps
This commit is contained in:
parent
e131eb0d9a
commit
21ed264a38
1 changed files with 2 additions and 2 deletions
4
lapi.c
4
lapi.c
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
** $Id: lapi.c,v 2.161 2012/05/21 13:18:10 roberto Exp roberto $
|
||||
** $Id: lapi.c,v 2.162 2012/05/22 17:50:39 roberto Exp roberto $
|
||||
** Lua API
|
||||
** See Copyright Notice in lua.h
|
||||
*/
|
||||
|
|
@ -1049,7 +1049,7 @@ LUA_API int lua_gc (lua_State *L, int what, int data) {
|
|||
luaC_forcestep(L); /* do a single step */
|
||||
}
|
||||
else {
|
||||
lu_mem debt = cast(lu_mem, data) * 1024; /* count in Kbytes */
|
||||
lu_mem debt = cast(lu_mem, data) * 1024 - GCSTEPSIZE;
|
||||
if (g->gcrunning)
|
||||
debt += g->GCdebt; /* include current debt */
|
||||
luaE_setdebt(g, debt);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue