r8505: Automated commit for Debian build of kmrcl upstream-version-1.63
[kmrcl.git] / processes.lisp
index 36fa3d952c10e0861386f19b4fa396777cacbc5a..f89d010931b1a3f8e8eabe77b123ada76954c2c7 100644 (file)
@@ -32,7 +32,7 @@
   #+allegro (mp:make-process-lock :name name)
   #+cmu (mp:make-lock name)
   #+lispworks (mp:make-lock :name name)
-  #+sbcl-thread (sb-thread:make-mutex :name name)
+  #+sb-thread (sb-thread:make-mutex :name name)
   )
 
 (defmacro with-lock-held ((lock) &body body)
@@ -42,9 +42,9 @@
   `(mp:with-lock-held (,lock) ,@body)
   #+lispworks
   `(mp:with-lock (,lock) ,@body)
-  #+sbcl-thread
+  #+sb-thread
   `(sb-thread:with-recursive-lock (,lock) ,@body)
-  #-(or allegro cmu lispworks sbcl-thread)
+  #-(or allegro cmu lispworks sb-thread)
   `(progn ,@body)
   )
 
@@ -54,9 +54,9 @@
   `(mp:with-timeout (,seconds) ,@body)
   #+cmu
   `(mp:with-timeout (,seconds) ,@body)
-  #+sbcl-thread
+  #+sb-thread
   `(sb-ext:with-timeout ,seconds ,@body)
-  #-(or allegro cmu sbcl-thread)
+  #-(or allegro cmu sb-thread)
   `(progn ,@body)
   )