diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-12-02 17:51:15 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-12-02 17:51:15 -0200 |
commit | 35931bbed4b47a450330ed02fe7758543d410836 (patch) | |
tree | 9d78141626928c119458ee00a3831e422032da20 | |
parent | 12779b2b7199caf0c9ddc9ca4abd8f70b6ddc17c (diff) | |
download | lua-35931bbed4b47a450330ed02fe7758543d410836.tar.gz lua-35931bbed4b47a450330ed02fe7758543d410836.tar.bz2 lua-35931bbed4b47a450330ed02fe7758543d410836.zip |
comments
-rw-r--r-- | lgc.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) */ |