Disable interrupts at boot time.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Mon, 23 Nov 1992 04:00:50 +0000 (04:00 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Mon, 23 Nov 1992 04:00:50 +0000 (04:00 +0000)
v7/src/microcode/boot.c

index cfed9cf880d43d41b6d25d40aa991972a879e6aa..c57a634eaf22655c63dceda67c389a92081de66b 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: boot.c,v 9.74 1992/09/24 01:33:37 cph Exp $
+$Id: boot.c,v 9.75 1992/11/23 04:00:50 gjr Exp $
 
 Copyright (c) 1988-1992 Massachusetts Institute of Technology
 
@@ -362,8 +362,9 @@ DEFUN (Start_Scheme, (Start_Prim, File_Name),
   }
 
   /* Setup registers */
-  INITIALIZE_INTERRUPTS();
-  Env = MAKE_OBJECT (GLOBAL_ENV, 0);
+  INITIALIZE_INTERRUPTS ();
+  SET_INTERRUPT_MASK (0);
+  Env = (MAKE_OBJECT (GLOBAL_ENV, 0));
   Trapping = false;
   Return_Hook_Address = NULL;