The code for disabling interrupts was outdated in clx (src/clx/dependent)

This commit is contained in:
Juan Jose Garcia Ripoll 2009-12-02 22:03:53 +01:00
parent dc0ce4b7ab
commit b37ee19177

View file

@ -1347,10 +1347,7 @@
#+ecl
(defmacro without-interrupts (&body body)
#+threads
`(mp:without-interrupts ,@body)
#-threads
`(let ((ext:*interrupt-enable* nil)) ,@body))
`(mp:without-interrupts ,@body))
#+sbcl
(defvar *without-interrupts-sic-lock*