Change WITHOUT-INTERRUPTS and WITHOUT-BACKGROUND-INTERRUPTS to use
authorChris Hanson <org/chris-hanson/cph>
Fri, 1 Oct 2004 02:26:55 +0000 (02:26 +0000)
committerChris Hanson <org/chris-hanson/cph>
Fri, 1 Oct 2004 02:26:55 +0000 (02:26 +0000)
WITH-LIMITED-INTERRUPTS rather than WITH-INTERRUPT-MASK.

v7/src/runtime/boot.scm

index 930287533040ead4655f5c5bd028cc7da37d8e59..8b88ff1d4798effb75ddbff5eb242516c5e46b7f 100644 (file)
@@ -1,8 +1,9 @@
 #| -*-Scheme-*-
 
-$Id: boot.scm,v 14.15 2003/02/14 18:28:32 cph Exp $
+$Id: boot.scm,v 14.16 2004/10/01 02:26:55 cph Exp $
 
-Copyright (c) 1988-1999, 2001 Massachusetts Institute of Technology
+Copyright 1986,1987,1988,1989,1990,1992 Massachusetts Institute of Technology
+Copyright 1993,1996,2001,2004 Massachusetts Institute of Technology
 
 This file is part of MIT/GNU Scheme.
 
@@ -105,13 +106,13 @@ USA.
       (thunk))))
 
 (define (without-interrupts thunk)
-  (with-interrupt-mask interrupt-mask/gc-ok
+  (with-limited-interrupts interrupt-mask/gc-ok
     (lambda (interrupt-mask)
       interrupt-mask
       (thunk))))
 
 (define (without-background-interrupts thunk)
-  (with-interrupt-mask interrupt-mask/no-background
+  (with-limited-interrupts interrupt-mask/no-background
     (lambda (interrupt-mask)
       interrupt-mask
       (thunk))))