Subj : Re: How to pass class-member function to pthread_create(....)? To : comp.programming.threads From : Jedrzej Dudkiewicz Date : Tue Jul 19 2005 09:54 am > There is no such specifications that the problem. You have to know that > your C library compiler code is compatible with C++ compiler generated > code anyway. If it's one compiler, and it's C++ compiler, this must be true. > And you can know if it is safe to call extern "C++" > linkage from the C library as well. If you are conforming to C and C++ standard, it is never safe. C standard doesn't know anything about C++, but C++ knows a lot about C. JD .