Skip to content
Snippets Groups Projects
Commit 9983043f authored by wlott's avatar wlott
Browse files

Chagned ``suspends'' to ``interrupts'' in gengc without-interrupts.

parent 4d9ef6c3
No related branches found
No related tags found
No related merge requests found
......@@ -7,11 +7,11 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/signal.lisp,v 1.19 1993/08/02 19:22:09 hallgren Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/signal.lisp,v 1.20 1993/08/27 14:43:29 wlott Exp $")
;;;
;;; **********************************************************************
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/signal.lisp,v 1.19 1993/08/02 19:22:09 hallgren Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/signal.lisp,v 1.20 1993/08/27 14:43:29 wlott Exp $
;;;
;;; Code for handling UNIX signals.
;;;
......@@ -358,12 +358,12 @@
(progn
(locally
(declare (optimize (speed 3) (safety 0)))
(incf (kernel:mutator-suspends-disabled-count)))
(incf (kernel:mutator-interupts-disabled-count)))
,@body)
(locally
(declare (optimize (speed 3) (safety 0)))
(when (and (zerop (decf (kernel:mutator-suspends-disabled-count)))
(not (zerop (kernel:mutator-suspend-pending))))
(when (and (zerop (decf (kernel:mutator-interrupts-disabled-count)))
(not (zerop (kernel:mutator-interrupts-pending))))
(do-pending-interrupt)))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment