diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-03-22 13:04:29 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-03-22 13:04:29 -0300 |
commit | 390256edf77638f747bc11b1b0862e6154ecfbcb (patch) | |
tree | ad334fdf75a29534f8e7a31f5e1f05b224725a40 /lgc.c | |
parent | ad24cff0f1108ee8e2c28f72e10da44ea2205c10 (diff) | |
download | lua-390256edf77638f747bc11b1b0862e6154ecfbcb.tar.gz lua-390256edf77638f747bc11b1b0862e6154ecfbcb.tar.bz2 lua-390256edf77638f747bc11b1b0862e6154ecfbcb.zip |
better name for GC pause
Diffstat (limited to 'lgc.c')
-rw-r--r-- | lgc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lgc.c,v 2.29 2005/03/09 16:28:07 roberto Exp roberto $ | 2 | ** $Id: lgc.c,v 2.30 2005/03/16 17:00:21 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 | */ |
@@ -57,7 +57,7 @@ | |||
57 | reallymarkobject(g, obj2gco(t)); } | 57 | reallymarkobject(g, obj2gco(t)); } |
58 | 58 | ||
59 | 59 | ||
60 | #define setthreshold(g) (g->GCthreshold = (g->estimate/100) * g->gcpace) | 60 | #define setthreshold(g) (g->GCthreshold = (g->estimate/100) * g->gcpause) |
61 | 61 | ||
62 | 62 | ||
63 | static void removeentry (Node *n) { | 63 | static void removeentry (Node *n) { |