2 つのエラーが発生し、Windows IDE の undefined reference to _imp__pthread_create
Dev undefined reference to _imp__pthread_join
C++ で、dev c++ 5.4.1 を使用しています。なぜこのエラーですか?どうすればこれを解決できますか? 誰かが光を当てることができますか?お時間をいただきありがとうございました!!
#include<iostream>
#include<pthread.h>
using namespace std;
void *uss_thread(void*){
cout<<"hello";
}
main()
{
pthread_t tid1;
pthread_create(&tid1, NULL, &uss_thread, NULL);
pthread_join(tid1,NULL);
}