#!-sb-thread (ignore waitp))
(unless new-owner
(setq new-owner *current-thread*))
- (when (eql new-owner (mutex-%owner mutex))
- (error "Recursive lock attempt ~S." mutex))
+ (let ((old (mutex-%owner mutex)))
+ (when (eq new-owner old)
+ (error "Recursive lock attempt ~S." mutex))
+ #!-sb-thread
+ (if old
+ (error "Strange deadlock on ~S in an unithreaded build?" mutex)
+ (setf (mutex-%owner mutex) new-owner)))
#!+sb-thread
(progn
;; FIXME: Lutexes do not currently support deadlines, as at least
(use-package :test-util)
+(with-test (:name mutex-owner)
+ ;; Make sure basics are sane on unithreaded ports as well
+ (let ((mutex (make-mutex)))
+ (get-mutex mutex)
+ (assert (eq *current-thread* (mutex-value mutex)))
+ (handler-bind ((warning #'error))
+ (release-mutex mutex))
+ (assert (not (mutex-value mutex)))))
+
+(with-test (:name spinlock-owner)
+ ;; Make sure basics are sane on unithreaded ports as well
+ (let ((spinlock (sb-thread::make-spinlock)))
+ (sb-thread::get-spinlock spinlock)
+ (assert (eq *current-thread* (sb-thread::spinlock-value spinlock)))
+ (handler-bind ((warning #'error))
+ (sb-thread::release-spinlock spinlock))
+ (assert (not (sb-thread::spinlock-value spinlock)))))
+
;;; Terminating a thread that's waiting for the terminal.
#+sb-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".)
-"1.0.23.14"
+"1.0.23.15"