diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-02-18 10:46:26 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-02-18 10:46:26 -0300 |
commit | 3f78de256e5759669460c6fa14455303762f2f53 (patch) | |
tree | 287ae3d2ccf441b4158f7a2e29feb21c39188711 /lgc.h | |
parent | d764cc552251fc69207c1bb4b34d3a6a5b7020c6 (diff) | |
download | lua-3f78de256e5759669460c6fa14455303762f2f53.tar.gz lua-3f78de256e5759669460c6fa14455303762f2f53.tar.bz2 lua-3f78de256e5759669460c6fa14455303762f2f53.zip |
no need to keep threads in a different GC list, now that there is the
'twups' list
Diffstat (limited to 'lgc.h')
-rw-r--r-- | lgc.h | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lgc.h,v 2.79 2014/02/13 14:46:38 roberto Exp roberto $ | 2 | ** $Id: lgc.h,v 2.80 2014/02/14 16:43: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 | */ |
@@ -39,12 +39,11 @@ | |||
39 | #define GCSpropagate 0 | 39 | #define GCSpropagate 0 |
40 | #define GCSatomic 1 | 40 | #define GCSatomic 1 |
41 | #define GCSswpallgc 2 | 41 | #define GCSswpallgc 2 |
42 | #define GCSswpthreads 3 | 42 | #define GCSswpfinobj 3 |
43 | #define GCSswpfinobj 4 | 43 | #define GCSswptobefnz 4 |
44 | #define GCSswptobefnz 5 | 44 | #define GCSswpend 5 |
45 | #define GCSswpend 6 | 45 | #define GCScallfin 6 |
46 | #define GCScallfin 7 | 46 | #define GCSpause 7 |
47 | #define GCSpause 8 | ||
48 | 47 | ||
49 | 48 | ||
50 | #define issweepphase(g) \ | 49 | #define issweepphase(g) \ |