From 015dc5f920a57c2e502eef3f54d91ac8fe225747 Mon Sep 17 00:00:00 2001 From: NIIMI Satoshi Date: Sat, 6 Oct 2007 13:26:32 +0000 Subject: [PATCH] 1.0.10.30: Fix build without sb-thread --- src/code/target-thread.lisp | 3 ++- version.lisp-expr | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) 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" -- 1.7.10.4