aboutsummaryrefslogtreecommitdiff
path: root/lgc.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-03-22 13:04:29 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-03-22 13:04:29 -0300
commit390256edf77638f747bc11b1b0862e6154ecfbcb (patch)
treead334fdf75a29534f8e7a31f5e1f05b224725a40 /lgc.c
parentad24cff0f1108ee8e2c28f72e10da44ea2205c10 (diff)
downloadlua-390256edf77638f747bc11b1b0862e6154ecfbcb.tar.gz
lua-390256edf77638f747bc11b1b0862e6154ecfbcb.tar.bz2
lua-390256edf77638f747bc11b1b0862e6154ecfbcb.zip
better name for GC pause
Diffstat (limited to 'lgc.c')
-rw-r--r--lgc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lgc.c b/lgc.c
index 04c3b4f1..8db5fb0d 100644
--- a/lgc.c
+++ b/lgc.c
@@ -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
63static void removeentry (Node *n) { 63static void removeentry (Node *n) {