X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fthread.lisp;h=09c2cc456d9252808885607cda781a5396e51d13;hb=d720bc359f03734ccb9baf66cb45dc01d623f369;hp=4d6a83cfa3bb1bbcccff2b816a80718e8fcd782a;hpb=7bb4c044e09f02a2115095af3733b0673b98a726;p=sbcl.git diff --git a/src/code/thread.lisp b/src/code/thread.lisp index 4d6a83c..09c2cc4 100644 --- a/src/code/thread.lisp +++ b/src/code/thread.lisp @@ -94,8 +94,8 @@ stale value, use MUTEX-OWNER instead." ,@body)) (sb!xc:defmacro with-spinlock ((lock) &body body) - (deprecation-warning :early "1.0.53.11" 'with-recursive-spinlock 'with-mutex) - `(with-lock (,lock) + (deprecation-warning :early "1.0.53.11" 'with-spinlock 'with-mutex) + `(with-mutex (,lock) ,@body)) (sb!xc:defmacro without-thread-waiting-for ((&key already-without-interrupts) &body body) @@ -118,8 +118,11 @@ stale value, use MUTEX-OWNER instead." (setf (thread-waiting-for ,thread) nil) (barrier (:write)) (,with (exec))) - (setf (thread-waiting-for ,thread) ,prev) - (barrier (:write)))) + ;; If we were waiting on a waitqueue, this becomes a bogus + ;; wakeup. + (when (mutex-p ,prev) + (setf (thread-waiting-for ,thread) ,prev) + (barrier (:write))))) (exec))))))) (sb!xc:defmacro with-mutex ((mutex &key (value '*current-thread*) (wait-p t))