On Tue, Jan 22, 2002 at 01:18:03PM +0100, Kevin D. Kissell wrote: > I think that the problem is complicated by the fact that > there may be a many->many mapping of kernel threads > (and CPUs) to user-land threads. In that case, no single > low-memory address can be correct for all kernel threads. > However, since every kernel thread should have its own > stack segment, it would appear to me that having a > variable "under" the stack would satisfy the need for > per-kernel-thread storage at a knowable location. > I suspect that there is a second-order problem in that > the base stack address may differ for instances of > the same binary launched under different circumstances. > But I don't think that renders the problem impossible. > One could have a global pointer, resolvable at link > time, which could be set to SP+delta by whatever > we call crt0 these days, and which should provide the > required semantics. Each user thread startup or Resolvable at link time and set by crt0 seem to be mutually exclusive... but perhaps I'm misunderstanding you. In any case, that's not the real problem. Linux user threads do not have true separate stacks. They share their _entire_ address space; the stacks are all bounded (default is 2MB) and grouped together at the top of the available memory region. -- Daniel Jacobowitz Carnegie Mellon University MontaVista Software Debian GNU/Linux Developer