mp:make-process
— Create a new thread.
(mp:make-process
&key) ⇒ name) ⇒ initial-bindings)
| A symbol to name the process. Processes can be unnamed and names need not be unique. |
| The list of special variables which will be local to
the new process. It defaults to |
This function creates a separate task, with a name, set of variable bindings and no function to run.
See also mp:process-run-function
.