diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-12-04 15:22:42 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-12-04 15:22:42 -0200 |
commit | 9db1942bac5fb509c6e46ccc825351a6be546792 (patch) | |
tree | d9f8091bf61610b7681c10b9b769031fc787f65e /lgc.h | |
parent | c6eac44a9420a26a2f8907dcd5266a6aecdb18ea (diff) | |
download | lua-9db1942bac5fb509c6e46ccc825351a6be546792.tar.gz lua-9db1942bac5fb509c6e46ccc825351a6be546792.tar.bz2 lua-9db1942bac5fb509c6e46ccc825351a6be546792.zip |
sweep of strings also incremental
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 1.25 2003/12/01 16:33:30 roberto Exp roberto $ | 2 | ** $Id: lgc.h,v 1.26 2003/12/03 20:03:07 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 | */ |
@@ -17,8 +17,9 @@ | |||
17 | #define GCSroot 0 | 17 | #define GCSroot 0 |
18 | #define GCSpropagate 1 | 18 | #define GCSpropagate 1 |
19 | #define GCSatomic 2 | 19 | #define GCSatomic 2 |
20 | #define GCSsweep 3 | 20 | #define GCSsweepstring 3 |
21 | #define GCSfinalize 4 | 21 | #define GCSsweep 4 |
22 | #define GCSfinalize 5 | ||
22 | 23 | ||
23 | 24 | ||
24 | /* | 25 | /* |