projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
12055fe
)
Disable interrupts at boot time.
author
Guillermo J. Rozas
<edu/mit/csail/zurich/gjr>
Mon, 23 Nov 1992 04:00:50 +0000
(
04:00
+0000)
committer
Guillermo J. Rozas
<edu/mit/csail/zurich/gjr>
Mon, 23 Nov 1992 04:00:50 +0000
(
04:00
+0000)
v7/src/microcode/boot.c
patch
|
blob
|
history
diff --git
a/v7/src/microcode/boot.c
b/v7/src/microcode/boot.c
index cfed9cf880d43d41b6d25d40aa991972a879e6aa..c57a634eaf22655c63dceda67c389a92081de66b 100644
(file)
--- a/
v7/src/microcode/boot.c
+++ b/
v7/src/microcode/boot.c
@@
-1,6
+1,6
@@
/* -*-C-*-
-$Id: boot.c,v 9.7
4 1992/09/24 01:33:37 cph
Exp $
+$Id: boot.c,v 9.7
5 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;