Justin Erenkrantz wrote: >I'm not terribly sure how forking a new process can be worked >around - unless we use a spmt model (my favorite, but the >group doesn't like it because it isn't "robust"). Perhaps we >could do something where a process can dynamically add threads >as needed? (worker has a fixed number of threads per process, >right?) >
I think the right combination may be fixed # of processes (greater than 1 for robustness) and variable # of threads per process. --Brian
