![](https://secure.gravatar.com/avatar/eb2bbf0a0eb0b0f3cd72033bf793d3d3.jpg?s=120&d=mm&r=g)
Hi I am trying to use bordeaux threads. Trying to figure out how to make output from a thread function appear in slime instead of the lisp terminal. The lisp I am using is Clozure Common Lisp Version 1.6-r14468M (WindowsX8664) I beleive I have the latest bordeaux threads Following is my test code. I hope the intentions are clear. What am I doing wrong or missing? Code follows Thanks, -Antony (asdf:oos 'asdf:load-op :bordeaux-threads) (format t "~%appearing in slime") (defun thread-test () (format t "~%appearing in lisp terminal: ~A" (bordeaux-threads:thread-name (bordeaux-threads:current-thread)))) (let ((bindings '((*standard-input* . *standard-input*) (*standard-output* . *standard-output*) (*query-io* . *query-io*) (*trace-output* . *trace-output*)))) ;;is this correct? (dolist (name '("foo" "bar")) (bordeaux-threads:make-thread #'thread-test :name name :initial-bindings bindings)))