]> gitweb.factorcode.org Git - factor.git/commitdiff
Saving the image performs a code GC
authorslava <slava@factorcode.org>
Fri, 29 Sep 2006 20:27:03 +0000 (20:27 +0000)
committerslava <slava@factorcode.org>
Fri, 29 Sep 2006 20:27:03 +0000 (20:27 +0000)
vm/image.c

index 73d064b5ab35a200a5a2be387b9a85ec1f2cfd95..b07a2b58c275fcfbde816aa141ba6f2a4ff4f6de 100644 (file)
@@ -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));
 }