hi Adrien,
I have to know if a task is running to able an action.
i added (task-running?) to task.ss. you can use it like this:
(spawn-task (lambda () (draw-torus)) 'torus-task)
(if (task-running? 'torus-task)
(display "running")
(display "not running"))
let me know what you think.
best,
gabor
