Add Reset_Memory to accomodate the garbage collector to disk.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Sat, 7 Feb 1987 15:23:37 +0000 (15:23 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Sat, 7 Feb 1987 15:23:37 +0000 (15:23 +0000)
v7/src/microcode/boot.c

index 8b51c46e16dcd15797ff37bede7b69f34c319b0a..55dbb5b77d5be25b886030caccb39f9f27730af3 100644 (file)
@@ -30,7 +30,7 @@ Technology nor of any adaptation thereof in any advertising,
 promotional, or sales literature without prior written consent from
 MIT in each case. */
 \f
-/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/boot.c,v 9.23 1987/02/03 15:59:15 jinx Exp $
+/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/boot.c,v 9.24 1987/02/07 15:23:37 jinx Exp $
  *
  * This file contains the code to support startup of
  * the SCHEME interpreter.
@@ -138,7 +138,7 @@ Exit_Scheme_Declarations;
 /* Main program */
 
 forward void Start_Scheme();
-extern void Clear_Memory(), Setup_Memory();
+extern void Clear_Memory(), Setup_Memory(), Reset_Memory();
 
 void
 main(argc, argv)
@@ -512,6 +512,7 @@ long Err, Micro_Error;
   }
   OS_Flush_Output_Buffer();
   OS_Quit();
+  Reset_Memory();
   Exit_Hook();
   Exit_Scheme(value);
 }