From: NIIMI Satoshi Date: Sat, 6 Oct 2007 13:26:32 +0000 (+0000) Subject: 1.0.10.30: Fix build without sb-thread X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=015dc5f920a57c2e502eef3f54d91ac8fe225747;p=sbcl.git 1.0.10.30: Fix build without sb-thread --- diff --git a/src/code/target-thread.lisp b/src/code/target-thread.lisp index ec94be8..accc71e 100644 --- a/src/code/target-thread.lisp +++ b/src/code/target-thread.lisp @@ -250,7 +250,8 @@ ALLOW-WITH-INTERRUPTS allows the call to be interrupted from sleep. It is recommended that you use WITH-MUTEX instead of calling GET-MUTEX directly." - (declare (type mutex mutex) (optimize (speed 3))) + (declare (type mutex mutex) (optimize (speed 3)) + #!-sb-thread (ignore waitp)) (unless new-owner (setq new-owner *current-thread*)) (when (eql new-owner (mutex-%owner mutex)) diff --git a/version.lisp-expr b/version.lisp-expr index cb40691..31368cd 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.10.29" +"1.0.10.30"