1.0.10.30: Fix build without sb-thread
authorNIIMI Satoshi <sa2c@users.sourceforge.net>
Sat, 6 Oct 2007 13:26:32 +0000 (13:26 +0000)
committerNIIMI Satoshi <sa2c@users.sourceforge.net>
Sat, 6 Oct 2007 13:26:32 +0000 (13:26 +0000)
src/code/target-thread.lisp
version.lisp-expr

index ec94be8..accc71e 100644 (file)
@@ -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))
index cb40691..31368cd 100644 (file)
@@ -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"