Re: Does Guile have a thread limit?

2014-04-04 Thread Eli Zaretskii
> 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-thread (la

Does Guile have a thread limit?

2014-04-04 Thread Diogo F. S. Ramos
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---

Re: WebSockets

2014-04-04 Thread Ludovic Courtès
Neil Jerram skribis: > I'm interested in adding support for WebSockets > (http://tools.ietf.org/html/rfc6455) to Guile's web modules. Is > anyone else interested in - or possibly already working on - that? Sounds like good idea! Ludo’.