From 5fe3f34c55a36dc2779a13fdfd4735e3b63029a9 Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Thu, 8 Oct 2009 20:27:54 +0200 Subject: [PATCH] src/clx/dependent.lisp: fixed typo in the definition for make-process-lock. --- src/clx/dependent.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clx/dependent.lisp b/src/clx/dependent.lisp index cb33f3e41..2608c24a4 100644 --- a/src/clx/dependent.lisp +++ b/src/clx/dependent.lisp @@ -893,7 +893,7 @@ (sb-thread:make-mutex :name name)) #+(and ecl threads) -(defun make-lock (name) +(defun make-process-lock (name) (mp:make-lock :name name)) ;;; HOLDING-LOCK: Execute a body of code with a lock held.