Terry Bullett wrote:
> Given some
> relatively large number of tasks (50-100?) how can I make sure that
> there are always N=2,4,8, of them running?
Simple answer that /might/ work: write a makefile that would start
all of them and then call it with:
make -j 4 target
The -j 4 is supposed to tell make to start up to four jobs in
parallel. I don't know how well this actually works.
-
Linux SMP list: FIRST see FAQ at http://www.irisa.fr/prive/mentre/smp-faq/
To Unsubscribe: send "unsubscribe linux-smp" to [EMAIL PROTECTED]