こんにちは、スレッドを適切に生成する手が必要です。構文が正しくないようです。ここに私のコードがあります...
// Spawn a thread--------------------------------------------------#
pthread_t thread1; // thread object
int rc1;
if( (rc1=pthread_create( &thread1, NULL, spellCheck, NULL)) )
{
cout << "Thread creation failed: " << rc1 << endl;
}
pthread_join( thread1, NULL);
関数定義
void spellCheck(vector<string> * fileRead, list<string> * incorrectWord, vector<string> * correctWord)
{
ヘッダファイル
void spellCheck(vector<string> *fileRead, list<string> *incorrectWord, vector<string> *correctWord);
どんな助けでも大歓迎です:)
私のエラー:
server.cpp:142: error: invalid conversion from 'void ()(std::vector<std:................. initializing argument 3 of 'int pthread_create(pthread_t, const pthread_attr_t*, void* ()(void), void*)'