On Tue, 2012-03-27 at 02:03 +0900, Kiyoshi Mizumaru wrote:
I'm afraid that I should have mentioned it in previous mail that incorrect arguments are passed to make-lock function in b03b582.
(defvar *thread-join-lock* (make-lock :name "Bordeaux threads join lock"))
The line should be
(defvar *thread-join-lock* (make-lock "Bordeaux threads join lock*))
Ok, fixed