projects
/
eow
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Getting started on unit tests
[eow]
/
util.lisp
1
(in-package :empire)
2
3
(defun spawn-with-name (name function &rest args)
4
"See SBCL documentation for SB-THREAD:MAKE-THREAD."
5
(sb-thread:make-thread (lambda ()
6
(apply function args))
7
:name name))