summaryrefslogtreecommitdiff
path: root/lgc.h
diff options
context:
space:
mode:
Diffstat (limited to 'lgc.h')
-rw-r--r--lgc.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/lgc.h b/lgc.h
index 3d8a631b..1c6396e6 100644
--- a/lgc.h
+++ b/lgc.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.h,v 2.62 2013/08/19 14:18:43 roberto Exp roberto $ 2** $Id: lgc.h,v 2.63 2013/08/20 17:46:34 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*/
@@ -38,14 +38,13 @@
38*/ 38*/
39#define GCSpropagate 0 39#define GCSpropagate 0
40#define GCSatomic 1 40#define GCSatomic 1
41#define GCSsweepstring 2 41#define GCSsweepudata 2
42#define GCSsweepudata 3 42#define GCSsweep 3
43#define GCSsweep 4 43#define GCSpause 4
44#define GCSpause 5
45 44
46 45
47#define issweepphase(g) \ 46#define issweepphase(g) \
48 (GCSsweepstring <= (g)->gcstate && (g)->gcstate <= GCSsweep) 47 (GCSsweepudata <= (g)->gcstate && (g)->gcstate <= GCSsweep)
49 48
50 49
51/* 50/*