Skip to content

Instantly share code, notes, and snippets.

@stassats
Created March 12, 2020 16:15
Show Gist options
  • Save stassats/ae4575e158e7aaca5d4c8201351b52f6 to your computer and use it in GitHub Desktop.
Save stassats/ae4575e158e7aaca5d4c8201351b52f6 to your computer and use it in GitHub Desktop.
(defun foo (&rest params)
(if params
(assert (every #'null params))))
(defvar *x*
(make-list 10000))
(loop repeat 8
do (sb-thread:make-thread
(lambda ()
(loop (apply #'foo *x*)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment