From 8f6b80aa1da8b07b944738ece7eb1348b360df49 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 20 Aug 2013 14:46:34 -0300 Subject: GC bits SEPARATED and FINALIZEDBIT mixed in FINALIZEDBIT (with simpler control) --- lstate.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index 4eda35fd..d9cab661 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 2.83 2013/08/05 16:58:28 roberto Exp roberto $ +** $Id: lstate.h,v 2.84 2013/08/07 12:18:11 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -33,9 +33,9 @@ ** threads, but the thread may already be dead, while the upvalue is ** still accessible through closures.) ** -** Objects with finalizers are kept in the list g->finobj. -** -** The list g->tobefnz links all objects being finalized. +** Live objects with finalizers are kept in the list g->finobj. The +** list g->tobefnz links all objects being finalized. In particular, an +** object has its FINALIZEDBIT set iff it is in one of these lists. */ -- cgit v1.2.3-55-g6feb