Subj : Re: Threads with C++ on Slackware To : comp.programming.threads From : fabrizio Date : Wed May 25 2005 08:40 pm > I can't find pthread_create(), and looking further I found this link: > http://www.gnu.org/software/commoncpp/docs/refman/html/thread2_8cpp-example.html > Problem is: I can't find cc++/thread.h anywhere either. Help is > appreciated. try with : #include linking with -lpthread you should get all the functions pthread_* Try the man if you're not sure. Hope it helps .