Subj : Re: a thread question To : comp.programming.threads From : Chris Friesen Date : Fri May 13 2005 04:16 pm David Schwartz wrote: > Actually, even thread-local variables are shared. Not necessarily. I think it would be legal to have a portion of the memory map dedicated to thread local storage, and thus you really wouldn't be able to see other thread's memory. The same virtual address would map to different physical pages for each thread. Chris .