summaryrefslogtreecommitdiff
path: root/lgc.h
diff options
context:
space:
mode:
Diffstat (limited to 'lgc.h')
-rw-r--r--lgc.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/lgc.h b/lgc.h
index e20f2afb..bd8bdadc 100644
--- a/lgc.h
+++ b/lgc.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.h,v 1.28 2003/12/09 16:56:11 roberto Exp roberto $ 2** $Id: lgc.h,v 2.1 2003/12/10 12:13:36 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*/
@@ -14,12 +14,10 @@
14/* 14/*
15** Possible states of the Garbage Collector 15** Possible states of the Garbage Collector
16*/ 16*/
17#define GCSroot 0 17#define GCSpropagate 0
18#define GCSpropagate 1 18#define GCSsweepstring 1
19#define GCSatomic 2 19#define GCSsweep 2
20#define GCSsweepstring 3 20#define GCSfinalize 3
21#define GCSsweep 4
22#define GCSfinalize 5
23 21
24 22
25/* 23/*