No sleep after mp:initialize-multiprocessing
Hi All, to track down a possible bug I wrote the folling: (defun main () (mp:initialize-multiprocessing "Test Sleep Process" nil 'jump-start)) (defvar *time* 0) (defun jump-start () (loop (format t "sleeping ~a ...~%" (incf *time*)) (sleep 3))) After delivery with (deliver 'main "sleep.exe" 0 :multiprocessing nil :console t) the program works but there is not delay between each output line. sleep doesn't sleep! Is there anything wrong with my code? (I'd like to start multiprocessing after my real program already accomplished a few things). Should I report this as a bug to Lispworks? Andreas