1.0.9.62: Performance and stability improvement of threading on FreeBSD
[sbcl.git] / tests / threads.pure.lisp
index f078b5b..3d7d524 100644 (file)
     (condition-notify queue)
     (sleep 1)
     (assert (not (thread-alive-p thread)))))
+
+;;; GET-MUTEX should not be interruptible under WITHOUT-INTERRUPTS
+
+#+sb-thread
+(with-test (:name without-interrupts+get-mutex
+            :fails-on :sb-lutex)
+  (let* ((lock (make-mutex))
+         (foo (get-mutex lock))
+         (bar nil)
+         (thread (make-thread (lambda ()
+                                (sb-sys:without-interrupts
+                                    (with-mutex (lock)
+                                      (setf bar t)))))))
+    (sleep 1)
+    (assert (thread-alive-p thread))
+    (terminate-thread thread)
+    (sleep 1)
+    (assert (thread-alive-p thread))
+    (release-mutex lock)
+    (sleep 1)
+    (assert (not (thread-alive-p thread)))
+    (assert (eq :aborted (join-thread thread :default :aborted)))
+    (assert bar)))