Re: Does Guile have a thread limit?

2014-04-05 Thread Mark H Weaver
"Diogo F. S. Ramos" writes: > The following program is aborted: > > (define number-of-thread 1000) > > (do ((i number-of-thread (- i 1))) > ((zero? i)) > (call-with-new-thread (lambda () (sleep 42 I looked into this, and the issue is that for every thread that's ever put into Guile mod

Re: Does Guile have a thread limit?

2014-04-05 Thread Diogo F. S. Ramos
>> From: "Diogo F. S. Ramos" >> Date: Sat, 05 Apr 2014 03:28:25 -0300 >> >> 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

Re: Does Guile have a thread limit?

2014-04-05 Thread Taylan Ulrich Bayırlı/Kammer
Eli Zaretskii writes: >> From: "Diogo F. S. Ramos" >> Date: Sat, 05 Apr 2014 03:28:25 -0300 >> >> The following program is aborted: >> >> --8<---cut here---start->8--- >> (define number-of-thread 1000) >> >> (do ((i number-of-thread (- i 1))) >> ((zero?