aboutsummaryrefslogtreecommitdiff
path: root/lgc.c
diff options
context:
space:
mode:
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) {