aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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) */