Next: Mutex Support, Previous: Threading basics, Up: Threading
The interaction of special variables with multiple threads is mostly as one would expect, with behaviour very similar to other implementations.
The last point means that
(defparameter *x* 0) (let ((*x* 1)) (sb-thread:make-thread (lambda () (print *x*))))
prints 0
and not 1
as of 0.9.6.