diff options
Diffstat (limited to 'lgc.c')
-rw-r--r-- | lgc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lgc.c,v 2.26 2005/02/18 12:40:02 roberto Exp roberto $ | 2 | ** $Id: lgc.c,v 2.27 2005/02/23 17:30:22 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 | */ |
@@ -242,7 +242,7 @@ static void traverseclosure (global_State *g, Closure *cl) { | |||
242 | static void checkstacksizes (lua_State *L, StkId max) { | 242 | static void checkstacksizes (lua_State *L, StkId max) { |
243 | int ci_used = L->ci - L->base_ci; /* number of `ci' in use */ | 243 | int ci_used = L->ci - L->base_ci; /* number of `ci' in use */ |
244 | int s_used = max - L->stack; /* part of stack in use */ | 244 | int s_used = max - L->stack; /* part of stack in use */ |
245 | if (L->size_ci > LUA_MAXCALLS) /* handling overflow? */ | 245 | if (L->size_ci > LUAC_MAXCALLS) /* handling overflow? */ |
246 | return; /* do not touch the stacks */ | 246 | return; /* do not touch the stacks */ |
247 | if (4*ci_used < L->size_ci && 2*BASIC_CI_SIZE < L->size_ci) | 247 | if (4*ci_used < L->size_ci && 2*BASIC_CI_SIZE < L->size_ci) |
248 | luaD_reallocCI(L, L->size_ci/2); /* still big enough... */ | 248 | luaD_reallocCI(L, L->size_ci/2); /* still big enough... */ |