[tbnl-devel] Problem with ppc/sbcl

Stefan Scholl stesch at no-spoon.de
Sun Feb 6 01:56:22 UTC 2005


On 2005-02-06 02:52:34, Stefan Scholl wrote:
>         #-(or allegro cmu lispworks sb-thread) (funcall func)

This was with KMRCL 1.77. Current version is 1.78, which seems to
support openmcl:

processes.lisp:
(defun make-process (name func)
  #+allegro (mp:process-run-function name func)
  #+cmu (mp:make-process func :name name)
  #+lispworks (mp:process-run-function name nil func)
  #+sb-thread (sb-thread:make-thread func)
  #+openmcl (ccl:process-run-function name func)
  #-(or allegro cmu lispworks sb-thread openmcl) (funcall func)
  )





More information about the Tbnl-devel mailing list