我正在 sbcl 上编写一些 lisp 代码,以便在模式守护进程中运行函数。问题是当我使用函数 sb-thred:make-thread 时,例如如下:
(sb-thread:make-thread (lambda () (progn (sleep 1) (when t (print "background action")))))
我收到以下错误消息:
Not supported in unithread builds. [Condition of type SIMPLE-ERROR]
怎么了 ?... 感谢帮助。