commit 35931bbed4b47a450330ed02fe7758543d410836
parent 12779b2b7199caf0c9ddc9ca4abd8f70b6ddc17c
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Thu, 2 Dec 2010 17:50:51 -0200
comments
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lgc.h b/lgc.h
@@ -1,5 +1,5 @@
/*
-** $Id: lgc.h,v 2.45 2010/11/18 19:15:00 roberto Exp $
+** $Id: lgc.h,v 2.45 2010/11/26 14:32:31 roberto Exp roberto $
** Garbage Collector
** See Copyright Notice in lua.h
*/
@@ -76,8 +76,8 @@
#define WHITE0BIT 0 /* object is white (type 0) */
#define WHITE1BIT 1 /* object is white (type 1) */
#define BLACKBIT 2 /* object is black */
-#define FINALIZEDBIT 3 /* for userdata: has been finalized */
-#define SEPARATED 4 /* " ": it's in 'udgc' list or in 'tobefnz' */
+#define FINALIZEDBIT 3 /* object has been separated for finalization */
+#define SEPARATED 4 /* object is in 'finobj' list or in 'tobefnz' */
#define FIXEDBIT 5 /* object is fixed (should not be collected) */
#define OLDBIT 6 /* object is old (only in generational mode) */
/* bit 7 is currently used by tests (luaL_checkmemory) */