summaryrefslogtreecommitdiff
path: root/libguile
diff options
context:
space:
mode:
authorMikael Djurfeldt <djurfeldt@nada.kth.se>2000-03-17 09:04:49 +0000
committerMikael Djurfeldt <djurfeldt@nada.kth.se>2000-03-17 09:04:49 +0000
commit85dd66c830014a32207611104c050028ab3c4312 (patch)
treefefc130818e876f288fcce8383dcb9a64e280df4 /libguile
parent1eb489a2dabae2191b20fd4661a856f067268d5d (diff)
downloadguile-85dd66c830014a32207611104c050028ab3c4312.tar.gz
(SCM_GC_TRIGGER_1, SCM_GC_TRIGGER_2): Default values set to -50.
Diffstat (limited to 'libguile')
-rw-r--r--libguile/gc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/gc.c b/libguile/gc.c
index e22bd884b..4c4ab5826 100644
--- a/libguile/gc.c
+++ b/libguile/gc.c
@@ -111,14 +111,14 @@
#define SCM_INIT_HEAP_SIZE_1 (40000L * sizeof (scm_cell))
#define SCM_CLUSTER_SIZE_1 2000L
-#define SCM_GC_TRIGGER_1 -40
+#define SCM_GC_TRIGGER_1 -50
#define SCM_INIT_HEAP_SIZE_2 (2500L * 2 * sizeof (scm_cell))
#define SCM_CLUSTER_SIZE_2 1000L
/* The following value may seem large, but note that if we get to GC at
* all, this means that we have a numerically intensive application
*/
-#define SCM_GC_TRIGGER_2 -40
+#define SCM_GC_TRIGGER_2 -50
#define SCM_MAX_SEGMENT_SIZE 2097000L /* a little less (adm) than 2 Mb */