0.9.4.30:
authorGabor Melis <mega@hotpop.com>
Wed, 7 Sep 2005 08:25:32 +0000 (08:25 +0000)
committerGabor Melis <mega@hotpop.com>
Wed, 7 Sep 2005 08:25:32 +0000 (08:25 +0000)
  * added #+-sb-thread conditionals to make timer compile without
    threads and run the tests

src/code/timer.lisp
tests/timer.impure.lisp
version.lisp-expr

index cdf8863..9ee6089 100644 (file)
   ;; FUNCTION until the other is called, from when it does nothing.
   (let ((mutex (sb!thread:make-mutex))
         (cancelled-p nil))
+    #!-sb-thread
+    (declare (ignore mutex))
     (list
      #'(lambda ()
          (sb!thread:with-recursive-lock (mutex)
index 45b7025..bfdcb78 100644 (file)
             (sb-ext:with-timeout 2
               (sleep 2))))))
 
+#+sb-thread
 (with-test (:name (:with-timeout :many-at-the-same-time))
   (loop repeat 10 do
         (sb-thread:make-thread
index 3b2e5ff..afcc31f 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".)
-"0.9.4.29"
+"0.9.4.30"