From 086da10dacc9e2b8f7731609f0deec731c854627 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 22 May 2012 14:50:39 -0300 Subject: merge of fields 'lastmajormem' (used in gen. mode) and 'estimate' (used in inc. mode) --- lstate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lstate.c') diff --git a/lstate.c b/lstate.c index fecd0fba..cb80de7d 100644 --- a/lstate.c +++ b/lstate.c @@ -1,5 +1,5 @@ /* -** $Id: lstate.c,v 2.94 2012/05/11 14:06:07 roberto Exp roberto $ +** $Id: lstate.c,v 2.95 2012/05/22 17:32:25 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -280,7 +280,7 @@ LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { g->uvhead.u.l.prev = &g->uvhead; g->uvhead.u.l.next = &g->uvhead; g->gcrunning = 0; /* no GC while building state */ - g->lastmajormem = 0; + g->GCestimate = 0; g->strt.size = 0; g->strt.nuse = 0; g->strt.hash = NULL; -- cgit v1.2.3-55-g6feb