On Wed, 7 May 2003, [iso-8859-1] Jörn Engel wrote: > It also matters if people writing applications for embedded systems > have a fetish for many threads. 1000 threads, each eating 8k memory > for pure existance (no actual work done yet), do put some memory > pressure on small machines. Yes, it would be possible to educate those > people, but changing kernel code is more fun and less work. I'm afraid I do not agree with both your sentences. Changing a *working kernel* code is definitely not much fun and not really less work if your target is the per-cpu kernel stack. You'll completely lose kernel preemption and this is really bad since many paths inside the kernel are easily preemptable. The design and the code of the kernel will become more complex (and slow) and even people that are correctly programming it are going to pay the price. No thanks, I'd say screw you thread maniacs ... - Davide