summaryrefslogtreecommitdiffstats
path: root/gc.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-04-24 07:47:59 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-04-24 07:47:59 -0700
commitb360098319ea038521bf6ead9fa3f1a1f9e2288c (patch)
treef5e83bf1717087bbaef85bde0351c44122171282 /gc.c
parent7ce1bfe873576ac8ece89ff0b612bfcf623aa521 (diff)
downloadtxr-b360098319ea038521bf6ead9fa3f1a1f9e2288c.tar.gz
txr-b360098319ea038521bf6ead9fa3f1a1f9e2288c.tar.bz2
txr-b360098319ea038521bf6ead9fa3f1a1f9e2288c.zip
* gc.c (make_obj, gc): The check for insufficient space in freshobj
array after a gc is moved into the gc function.
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gc.c b/gc.c
index 11078aaa..799bbf94 100644
--- a/gc.c
+++ b/gc.c
@@ -173,8 +173,6 @@ val make_obj(void)
malloc_delta >= opt_gc_delta)
{
gc();
- if (freshobj_idx >= FRESHOBJ_VEC_SIZE)
- full_gc = 1;
prev_malloc_bytes = malloc_bytes;
}
#else
@@ -665,10 +663,13 @@ void gc(void)
printf("sweep: freed %d full_gc == %d exhausted == %d\n",
(int) swept, full_gc, exhausted);
#endif
- if (++gc_counter >= FULL_GC_INTERVAL) {
+ if (++gc_counter >= FULL_GC_INTERVAL ||
+ freshobj_idx >= FRESHOBJ_VEC_SIZE)
+ {
full_gc_next_time = 1;
gc_counter = 0;
}
+
if (exhausted && full_gc && swept < 3 * HEAP_SIZE / 4)
more();
#else