* added #+-sb-thread conditionals to make timer compile without
threads and run the tests
;; 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)
(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
;;; 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"