[usocket-cvs] r561 - usocket/trunk/vendor

15 Sep
2010
15 Sep
'10
6:14 a.m.
Author: ctian Date: Wed Sep 15 02:14:59 2010 New Revision: 561 Log: ABCL: spawn-thread now works in ABCL. Modified: usocket/trunk/vendor/spawn-thread.lisp Modified: usocket/trunk/vendor/spawn-thread.lisp ============================================================================== --- usocket/trunk/vendor/spawn-thread.lisp (original) +++ usocket/trunk/vendor/spawn-thread.lisp Wed Sep 15 02:14:59 2010 @@ -65,6 +65,9 @@ #+scl (mp:make-process #'(lambda () (apply function args)) :name name) + #+abcl + (threads:make-thread #'(lambda () (apply function args)) + :name name) #+threads-not-available (declare (ignore name function args)) #+threads-not-available
5349
Age (days ago)
5349
Last active (days ago)
0 comments
1 participants
participants (1)
-
Chun Tian