aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-12-02 17:51:15 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-12-02 17:51:15 -0200
commit35931bbed4b47a450330ed02fe7758543d410836 (patch)
tree9d78141626928c119458ee00a3831e422032da20
parent12779b2b7199caf0c9ddc9ca4abd8f70b6ddc17c (diff)
downloadlua-35931bbed4b47a450330ed02fe7758543d410836.tar.gz
lua-35931bbed4b47a450330ed02fe7758543d410836.tar.bz2
lua-35931bbed4b47a450330ed02fe7758543d410836.zip
comments
-rw-r--r--lgc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lgc.h b/lgc.h
index 4c5d2eca..ea6ca338 100644
--- a/lgc.h
+++ b/lgc.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.h,v 2.45 2010/11/18 19:15:00 roberto Exp $ 2** $Id: lgc.h,v 2.45 2010/11/26 14:32:31 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*/
@@ -76,8 +76,8 @@
76#define WHITE0BIT 0 /* object is white (type 0) */ 76#define WHITE0BIT 0 /* object is white (type 0) */
77#define WHITE1BIT 1 /* object is white (type 1) */ 77#define WHITE1BIT 1 /* object is white (type 1) */
78#define BLACKBIT 2 /* object is black */ 78#define BLACKBIT 2 /* object is black */
79#define FINALIZEDBIT 3 /* for userdata: has been finalized */ 79#define FINALIZEDBIT 3 /* object has been separated for finalization */
80#define SEPARATED 4 /* " ": it's in 'udgc' list or in 'tobefnz' */ 80#define SEPARATED 4 /* object is in 'finobj' list or in 'tobefnz' */
81#define FIXEDBIT 5 /* object is fixed (should not be collected) */ 81#define FIXEDBIT 5 /* object is fixed (should not be collected) */
82#define OLDBIT 6 /* object is old (only in generational mode) */ 82#define OLDBIT 6 /* object is old (only in generational mode) */
83/* bit 7 is currently used by tests (luaL_checkmemory) */ 83/* bit 7 is currently used by tests (luaL_checkmemory) */