From d505cf6b50231d64fa8fda129fd9c026b6b8e472 Mon Sep 17 00:00:00 2001 From: slava Date: Fri, 29 Sep 2006 20:27:03 +0000 Subject: [PATCH] Saving the image performs a code GC --- vm/image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/image.c b/vm/image.c index 73d064b5ab..b07a2b58c2 100644 --- a/vm/image.c +++ b/vm/image.c @@ -116,7 +116,7 @@ void primitive_save_image(void) { F_STRING* filename; /* do a full GC to push everything into tenured space */ - garbage_collection(TENURED,false); + garbage_collection(TENURED,true); filename = untag_string(dpop()); save_image(to_char_string(filename,true)); }