Subj : Re: Stack in thread-local virtual memory? To : comp.programming.threads From : Jingbo Date : Fri Aug 26 2005 01:12 pm Generally I do not like the idea of accessing local variable of the other thread, because you have to be very careful not to return from the function that define the local variable before the other thread finish accessing it. .