diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-09-11 09:47:48 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-09-11 09:47:48 -0300 |
commit | d8aa8dd97e14dfd724e997261d305f2045d1ca63 (patch) | |
tree | 675587d68a41657e6efc6f53334522a2e9b5bf03 /lgc.h | |
parent | 115087344797d0aafb23f4fe5b902fdebd2c3310 (diff) | |
download | lua-d8aa8dd97e14dfd724e997261d305f2045d1ca63.tar.gz lua-d8aa8dd97e14dfd724e997261d305f2045d1ca63.tar.bz2 lua-d8aa8dd97e14dfd724e997261d305f2045d1ca63.zip |
objects in list 'tobefnz' have a GC life-cycle like all others
(specifically they are cleaned during sweep phase)
Diffstat (limited to 'lgc.h')
-rw-r--r-- | lgc.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lgc.h,v 2.71 2013/09/03 15:37:10 roberto Exp roberto $ | 2 | ** $Id: lgc.h,v 2.72 2013/09/11 12:26:14 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 | */ |
@@ -42,8 +42,9 @@ | |||
42 | #define GCSsweeplocfin 3 | 42 | #define GCSsweeplocfin 3 |
43 | #define GCSsweepfin 4 | 43 | #define GCSsweepfin 4 |
44 | #define GCSsweepall 5 | 44 | #define GCSsweepall 5 |
45 | #define GCSsweepmainth 6 | 45 | #define GCSsweeptobefnz 6 |
46 | #define GCSpause 7 | 46 | #define GCSsweepmainth 7 |
47 | #define GCSpause 8 | ||
47 | 48 | ||
48 | 49 | ||
49 | #define issweepphase(g) \ | 50 | #define issweepphase(g) \ |