Subj : stupid threading question .... To : comp.programming.threads From : Daniel Rayment Date : Sun Aug 14 2005 10:17 pm say i have 2 thread joe and blow. both are a c++ thread class so joe : public thread, and blow : public thread thread has member function member() class thread { public: member() }; should i be at all concerned about both joe and blow calling member at the same time? (assume for now there are no static members where sharing memory is an issue.) and taking that one step furthur if i make member a global function would there be concerns there? (again no global values in memory where sharing is an issue) .