[cl-irc-cvs] r214 - trunk

ehuelsmann at common-lisp.net ehuelsmann at common-lisp.net
Sat Aug 18 21:21:02 UTC 2012


Author: ehuelsmann
Date: Sat Aug 18 14:21:02 2012
New Revision: 214

Log:
Name threads on SBCL.

Patch submitted by Daniel Lowe.

Modified:
   trunk/protocol.lisp

Modified: trunk/protocol.lisp
==============================================================================
--- trunk/protocol.lisp	Sat Aug 18 14:19:25 2012	(r213)
+++ trunk/protocol.lisp	Sat Aug 18 14:21:02 2012	(r214)
@@ -292,7 +292,7 @@
   #+allegro (mp:process-run-function name function)
   #+cmu (mp:make-process function :name name)
   #+lispworks (mp:process-run-function name nil function)
-  #+sb-thread (sb-thread:make-thread function)
+  #+sb-thread (sb-thread:make-thread function :name name)
   #+openmcl (ccl:process-run-function name function)
   #+armedbear (ext:make-thread function))
 




More information about the cl-irc-cvs mailing list