The following program is aborted:

--8<---------------cut here---------------start------------->8---
(define number-of-thread 1000)

(do ((i number-of-thread (- i 1)))
    ((zero? i))
  (call-with-new-thread (lambda () (sleep 42))))
--8<---------------cut here---------------end--------------->8---

Reply via email to