1.0.18.6: rename SB-PCL::FUNCTION-KEYWORD-PARAMETERS to CL:FUNCTION-KEYWORDS
[sbcl.git] / src / code / cross-thread.lisp
index 1c63565..461f02d 100644 (file)
   (declare (ignore mutex))
   `(locally ,@body))
 
+(defun make-spinlock (&key name value)
+  (declare (ignore name value))
+  nil)
 
+(defun get-spinlock (spinlock)
+  (declare (ignore spinlock))
+  t)
 
+(defun release-spinlock (spinlock)
+  (declare (ignore spinlock))
+  nil)
+
+(defmacro with-spinlock ((spinlock) &body body)
+  (declare (ignore spinlock))
+  `(locally ,@body))