スレッド化のための非常に単純なコードを作成しました。私はこれに非常に慣れていないので、言及されたエラーについてはわかりません。
class opca_hello
{
public:
void hello();
}
void opca_hello::hello()
{
printf ("hello \n");
}
int main(int argc, char **argv)
{
opca_hello opca;
pthread_t thread1, thread2;
pthread_create( &thread1, NULL, opca.hello, NULL);
pthread_join( thread1, NULL);
return 0;
}
エラー: タイプ "void (opca_hello::)()" の引数が "void* (*)(void*)" と一致しません