Re: Parallel Guile code called from parallel C code

2011-08-21 Thread Ludovic Courtès
Hi, pablo r...@uzy.me skribis: The Guile doc says Internally, a fixed-size pool of threads is used to evaluate futures, (...) the pool contains one thread per available CPU core, minus one, to account for the main thread. Then how does this work in the situation I described? Do the two

Parallel Guile code called from parallel C code

2011-08-13 Thread pablo
Hello everyone, I have a question about calling parallel Guile functions from a parallel C program. Suppose the situation is such that there is a parallel C program and two threads which call Guile functions and that these Guile functions use future to go parallel. The Guile doc says Internally,