Subj : Re: stupid threading question .... To : comp.programming.threads From : Paul Pluzhnikov Date : Sun Aug 14 2005 08:00 pm Daniel Rayment writes: > should i be at all concerned about both joe and blow calling member > at the same time? No. > and taking that one step furthur if i make member a global function > would there be concerns there? No. Executing the same code from multiple threads is never a concern. Reading the same memory from multiple threads is never a concern. The only concern is *updating* the same memory location from multiple threads (and that in general requires a mutex). Cheers, -- In order to understand recursion you must first understand recursion. Remove /-nsp/ for email. .